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

Correct macro usage in chebyshev_transform_test.cpp

This commit is contained in:
jzmaddock
2022-01-18 09:24:37 +00:00
parent 7850b8c2dd
commit 9d8f5b107c

View File

@@ -85,7 +85,7 @@ void test_sinc_chebyshev_transform()
Real Q = cheb.integrate();
//NIntegrate[Sinc[x], {x, 0, 1}, WorkingPrecision -> 200, AccuracyGoal -> 150, PrecisionGoal -> 150, MaxRecursion -> 150]
Real Q_exp = BOOST_MATH_TEST_VALUE(0.94608307036718301494135331382317965781233795473811179047145477356668);
Real Q_exp = BOOST_MATH_TEST_VALUE(Real, 0.94608307036718301494135331382317965781233795473811179047145477356668);
CHECK_ABSOLUTE_ERROR(Q_exp, Q, tol);
}