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

Update error rate in cubic_hermite_test. (#482)

This commit is contained in:
Nick
2021-01-08 08:06:06 -05:00
committed by GitHub
parent d78be60933
commit 163788bcbb

View File

@@ -175,7 +175,7 @@ void test_quadratic()
for (Real t = x0; t <= xmax; t+= 0.0125)
{
CHECK_ULP_CLOSE(t*t/2, s(t), 5);
CHECK_ULP_CLOSE(t, s.prime(t), 65);
CHECK_ULP_CLOSE(t, s.prime(t), 138);
}
}