Go to the source code of this file.
|
| typedef void(* | integrand) (unsigned ndim, const double *x, void *, unsigned fdim, double *fval) |
| |
| typedef void(* | integrand_v) (unsigned ndim, unsigned npt, const double *x, void *, unsigned fdim, double *fval) |
| |
|
| int | adapt_integrate (unsigned fdim, integrand f, void *fdata, unsigned dim, const double *xmin, const double *xmax, unsigned maxEval, double reqAbsError, double reqRelError, double *val, double *err) |
| |
| int | adapt_integrate_v (unsigned fdim, integrand_v f, void *fdata, unsigned dim, const double *xmin, const double *xmax, unsigned maxEval, double reqAbsError, double reqRelError, double *val, double *err) |
| |