Annett Keller writes:
> struct mc_param par = {1.0, 2.0}; /* values for parameter */
>
> gsl_monte_function G = { &g, 3, &par}; /* produces ERROR MESSAGE */
Ideally gsl should have some functions to construct these
objects but in the meantime they have to be constructed
manually:
gsl_monte_function G;
G.f = &g;
G.dim = 3;
G.params = ∥