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

Adjust linear_regression_test.cpp error rates for apple/clang.

This commit is contained in:
jzmaddock
2024-04-26 09:13:02 +01:00
parent d4b0c0ba74
commit 94740deff5

View File

@@ -223,7 +223,7 @@ void test_scaling_relations()
Real c1_lambda = std::get<1>(temp);
Real Rsquared_lambda = std::get<2>(temp);
CHECK_ULP_CLOSE(lambda*c0, c0_lambda, 30);
CHECK_ULP_CLOSE(lambda*c0, c0_lambda, 50);
CHECK_ULP_CLOSE(lambda*c1, c1_lambda, 30);
CHECK_ULP_CLOSE(Rsquared, Rsquared_lambda, 3);