From c83ebd1193daf8e401b7a4dea0cc771887e27fbc Mon Sep 17 00:00:00 2001 From: Nick Date: Wed, 23 Aug 2017 13:40:11 -0600 Subject: [PATCH] Remove obsolete reference to adaptive_trapezoidal --- doc/quadrature/trapezoidal.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/quadrature/trapezoidal.qbk b/doc/quadrature/trapezoidal.qbk index 70b22c967..40e6bc868 100644 --- a/doc/quadrature/trapezoidal.qbk +++ b/doc/quadrature/trapezoidal.qbk @@ -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(), tolerance, max_refinements, &error_estimate, &L1); + double I = trapezoidal(f, 0, two_pi(), tolerance, max_refinements, &error_estimate, &L1); if (error_estimate > tolerance*L1) { double I = some_other_quadrature_method(f, 0, two_pi());