mirror of
https://github.com/boostorg/math.git
synced 2026-01-19 04:22:09 +00:00
Loosen tolerance
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user