From 124ae6cc7eaa738452aefa153f57083140739047 Mon Sep 17 00:00:00 2001 From: meggert Date: Wed, 14 Feb 2024 09:04:56 +0100 Subject: [PATCH] as i dont like being surprised by implicit stuff ... --- mission/controller/acs/Guidance.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mission/controller/acs/Guidance.cpp b/mission/controller/acs/Guidance.cpp index cc0a20d9..538d4e35 100644 --- a/mission/controller/acs/Guidance.cpp +++ b/mission/controller/acs/Guidance.cpp @@ -159,7 +159,7 @@ void Guidance::targetQuatPtgGs(timeval timeAbsolute, const double timeDelta, } // normalize weights for convenience - double normFactor = 1. / (std::abs(sunWeight) + std::abs(earthWeight)); + double normFactor = 1. / (std::fabs(sunWeight) + std::fabs(earthWeight)); sunWeight *= normFactor; earthWeight *= normFactor;