Skip to content

Commit

Permalink
Tolerance again.
Browse files Browse the repository at this point in the history
  • Loading branch information
bluescarni committed Oct 14, 2023
1 parent 3bfa679 commit fb46437
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/kepF.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ TEST_CASE("cfunc")

auto eps_close = [](const fp_t &a, const fp_t &b) {
using std::abs;
return abs(a - b) <= std::numeric_limits<fp_t>::epsilon() * 1000;
return abs(a - b) <= std::numeric_limits<fp_t>::epsilon() * 10000;
};

auto [h, k, lam] = make_vars("h", "k", "lam");
Expand Down

0 comments on commit fb46437

Please sign in to comment.