From d99959684f60243a135fb65a625c28603e69955f Mon Sep 17 00:00:00 2001 From: jatin Date: Sat, 6 Jan 2024 17:34:13 -0800 Subject: [PATCH] Adjsuting acosh test tolerance --- test/src/inverse_hyperbolic_trig_approx_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/inverse_hyperbolic_trig_approx_test.cpp b/test/src/inverse_hyperbolic_trig_approx_test.cpp index 3f3dfb1..7375c9e 100644 --- a/test/src/inverse_hyperbolic_trig_approx_test.cpp +++ b/test/src/inverse_hyperbolic_trig_approx_test.cpp @@ -63,7 +63,7 @@ TEMPLATE_TEST_CASE ("Acosh Approx Test", "", float, double) { test_approx (all_floats, y_exact, [] (auto x) { return math_approx::acosh<6> (x); }, - 3.5e-6f); + 4.5e-6f); } SECTION ("5th-Order") {