2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-30 08:02:11 +00:00

Remove obsolete reference to adaptive_trapezoidal

This commit is contained in:
Nick
2017-08-23 13:40:11 -06:00
committed by GitHub
parent e100973d53
commit c83ebd1193

View File

@@ -84,7 +84,7 @@ This is achieved by passing additional pointers into the routine:
double error_estimate;
double L1;
double I = adaptive_trapezoidal(f, 0, two_pi<double>(), tolerance, max_refinements, &error_estimate, &L1);
double I = trapezoidal(f, 0, two_pi<double>(), tolerance, max_refinements, &error_estimate, &L1);
if (error_estimate > tolerance*L1)
{
double I = some_other_quadrature_method(f, 0, two_pi<double>());