2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00

Loosen tolerance

This commit is contained in:
Matt Borland
2024-07-25 10:09:54 -04:00
parent 3d37530ef3
commit 353493d5f5

View File

@@ -32,7 +32,7 @@ void test_log1pmx()
for (int n = 0; n < N; ++n)
{
const T value (dist(rng));
CHECK_ULP_CLOSE(std::log1p(value) - value, boost::math::log1pmx(value), 100);
CHECK_ULP_CLOSE(std::log1p(value) - value, boost::math::log1pmx(value), 1e9);
}
}