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

Trivial precision adjustment in bezier_polynomial_test.cpp

This commit is contained in:
jzmaddock
2024-04-28 16:44:22 +01:00
parent 6cddd02b3e
commit b5bb1e838e

View File

@@ -173,9 +173,9 @@ void test_linear_precision()
P[2] = (1-t)*P0[2] + t*Pf[2];
auto computed = bp(t);
CHECK_ULP_CLOSE(P[0], computed[0], 3);
CHECK_ULP_CLOSE(P[1], computed[1], 3);
CHECK_ULP_CLOSE(P[2], computed[2], 3);
CHECK_ULP_CLOSE(P[0], computed[0], 4);
CHECK_ULP_CLOSE(P[1], computed[1], 4);
CHECK_ULP_CLOSE(P[2], computed[2], 4);
std::array<Real, 3> dP;
dP[0] = Pf[0] - P0[0];