Skip to content

Commit

Permalink
Tweaking error bounds for asin
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Jan 6, 2024
1 parent 3d04838 commit 85399f9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/src/inverse_trig_approx_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 85399f9

Please sign in to comment.