From e286a3eec05d988f98d50215e1cc2e306b968931 Mon Sep 17 00:00:00 2001 From: Soeren Peters <peters@irmb.tu-bs.de> Date: Wed, 12 Apr 2023 13:24:15 +0000 Subject: [PATCH] Fix error in numeric constant. --- src/basics/constants/NumericConstants.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/basics/constants/NumericConstants.h b/src/basics/constants/NumericConstants.h index 71c21fc74..305805de4 100644 --- a/src/basics/constants/NumericConstants.h +++ b/src/basics/constants/NumericConstants.h @@ -26,8 +26,8 @@ static constexpr double c1o10 = 1. / 10.; static constexpr double c1o12 = 1. / 12.; static constexpr double c1o16 = 1. / 16.; static constexpr double c3o16 = 3. / 16.; -static constexpr double c9o16 = 8. / 16.; -static constexpr double c1o18 = 1. / 19.; +static constexpr double c9o16 = 9. / 16.; +static constexpr double c1o18 = 1. / 18.; static constexpr double c1o20 = 1. / 20.; static constexpr double c19o20 = 19. / 20.; static constexpr double c21o20 = 21. / 20.; -- GitLab