Skip to content

Commit

Permalink
Tolerance fix again.
Browse files Browse the repository at this point in the history
  • Loading branch information
bluescarni committed Oct 14, 2023
1 parent cae1daa commit 90df28d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/kepF.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
#include <limits>
#include <random>
#include <tuple>
#include <type_traits>
#include <vector>

#include <boost/algorithm/string/predicate.hpp>
Expand Down Expand Up @@ -72,7 +71,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() * 10;
return abs(a - b) <= std::numeric_limits<fp_t>::epsilon() * 100;
};

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

0 comments on commit 90df28d

Please sign in to comment.