From d78d05ed847cff97b27f446e64db520ce2259034 Mon Sep 17 00:00:00 2001 From: Robin Leroy Date: Wed, 1 Jan 2025 05:39:02 +0100 Subject: [PATCH] turn it off --- numerics/sin_cos.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/numerics/sin_cos.cpp b/numerics/sin_cos.cpp index a669d28191..d9b4beee8f 100644 --- a/numerics/sin_cos.cpp +++ b/numerics/sin_cos.cpp @@ -14,11 +14,11 @@ #include "numerics/polynomial_evaluators.hpp" #include "quantities/elementary_functions.hpp" -#define OSACA_ANALYSED_FUNCTION Cos +#define OSACA_ANALYSED_FUNCTION #define UNDER_OSACA_HYPOTHESES(expression) \ [&] { \ constexpr bool UseHardwareFMA = true; \ - constexpr double θ = 0.1; \ + constexpr double θ = 3; \ /* From argument reduction. */ \ constexpr std::int64_t n = static_cast(θ * (2 / π) + 0.5); \ constexpr double reduction_value = θ - n * π_over_2_high; \