From 85399f9b35a5bc47d93fd8a18006e2467e577403 Mon Sep 17 00:00:00 2001 From: jatin Date: Fri, 5 Jan 2024 18:21:54 -0800 Subject: [PATCH] Tweaking error bounds for asin --- test/src/inverse_trig_approx_test.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/src/inverse_trig_approx_test.cpp b/test/src/inverse_trig_approx_test.cpp index c197a8d..3221b3a 100644 --- a/test/src/inverse_trig_approx_test.cpp +++ b/test/src/inverse_trig_approx_test.cpp @@ -37,16 +37,16 @@ TEST_CASE ("Asin Approx Test") { test_approx ([] (auto x) { return math_approx::asin<4> (x); }, - 1.5e-7f, - 2.5e-7f, - 3); + 2.0e-7f, + 4.0e-7f, + 4); } SECTION ("3rd-Order") { test_approx ([] (auto x) { return math_approx::asin<3> (x); }, 2.5e-7f, - 3.0e-7f, + 5.0e-7f, 5); } SECTION ("2nd-Order")