This commit is contained in:
Guilhem Lavaux 2011-04-13 05:01:10 -05:00
commit b00f8c8645
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ double gslIntegrate(FunT& v, double a, double b, double prec, int NPTS = 1024)
f.function = &gslSpecialFunction<FunT>; f.function = &gslSpecialFunction<FunT>;
f.params = &v; f.params = &v;
gsl_integration_qag(&f, a, b, 0, prec, NPTS, GSL_INTEG_GAUSS61, gsl_integration_qag(&f, a, b, prec, 0, NPTS, GSL_INTEG_GAUSS61,
w, &result, &abserr); w, &result, &abserr);
gsl_integration_workspace_free(w); gsl_integration_workspace_free(w);