1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
// GetDP - Copyright (C) 1997-2018 P. Dular and C. Geuzaine, University of Liege
//
// See the LICENSE.txt file for license information. Please report all
// issues on https://gitlab.onelab.info/getdp/getdp/issues
#ifndef _NUMERIC_UTILS_H_
#define _NUMERIC_UTILS_H_
// Numerical routines implemented using either the GSL or Numerical Recipes
double brent(double ax, double bx, double cx,
double (*f)(double), double tol, double *xmin);
void mnbrak(double *ax, double *bx, double *cx, double *fa, double *fb,
double *fc, double (*func)(double));
#endif
|