Skip to content

Commit

Permalink
Tying to speed up tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Nov 28, 2023
1 parent f4642b0 commit 40588bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/src/tanh_approx_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
TEST_CASE ("Tanh Approx Test")
{
#if ! defined(WIN32)
const auto all_floats = test_helpers::all_32_bit_floats (-10.0f, 10.0f, 1.0e-3f);
const auto all_floats = test_helpers::all_32_bit_floats (-10.0f, 10.0f, 1.0e-2f);
#else
const auto all_floats = test_helpers::all_32_bit_floats (-10.0f, 10.0f, 1.0e-1f);
#endif
Expand Down
2 changes: 1 addition & 1 deletion test/src/wright_omega_approx_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
TEST_CASE ("Wright-Omega Approx Test")
{
#if ! defined(WIN32)
const auto all_floats = test_helpers::all_32_bit_floats (-10.0f, 30.0f, 5.0e-3f);
const auto all_floats = test_helpers::all_32_bit_floats (-10.0f, 30.0f, 1.0e-1f);
#else
const auto all_floats = test_helpers::all_32_bit_floats (-10.0f, 30.0f, 5.0e-1f);
#endif
Expand Down

0 comments on commit 40588bd

Please sign in to comment.