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

Adjust t-dist error rates for apple/clang.

This commit is contained in:
jzmaddock
2024-04-26 09:11:52 +01:00
parent a0826beac6
commit d4b0c0ba74

View File

@@ -55,8 +55,8 @@ void test_multiprecision_exact_mean()
Real computed_statistic = std::get<0>(temp);
Real computed_pvalue = std::get<1>(temp);
CHECK_MOLLIFIED_CLOSE(Real(0), computed_statistic, 15*std::numeric_limits<Real>::epsilon());
CHECK_ULP_CLOSE(Real(1), computed_pvalue, 25);
CHECK_MOLLIFIED_CLOSE(Real(0), computed_statistic, 20*std::numeric_limits<Real>::epsilon());
CHECK_ULP_CLOSE(Real(1), computed_pvalue, 35);
}
template<typename Z>