/* Some things common to all the Monte-Carlo implementations */ /* Author: MJB */ /* RCS: $Id: gsl_monte.h,v 1.1 1998/07/02 21:03:40 booth Exp $ */ #ifndef GSL_MONTE_H #define GSL_MONTE_H /* Hide the function type in a typedef so that we can use it in all our integration functions, and make it easy to change things. */ typedef double (*gsl_monte_f_T)(double *); #endif /* GSL_MONTE_H */