GslFunctionFdfAdapter.hpp
Go to the documentation of this file.
Class implements adapter for gsl_function_fdf.
Definition: GslFunctionFdfAdapter.hpp:23
Definition: cadHoliday.cpp:3
static double call_f(double x, void *params)
Method called by the GSL algorithm.
Definition: GslFunctionFdfAdapter.hpp:42
static double call_df(double x, void *params)
Method called by the GSL algorithm.
Definition: GslFunctionFdfAdapter.hpp:50
const F & f_
F must be a functor.
Definition: GslFunctionFdfAdapter.hpp:63
static void call_fdf(double x, void *params, double *f, double *df)
Method called by the GSL algorithm.
Definition: GslFunctionFdfAdapter.hpp:58
GslFunctionFdfAdapter(const F &kf, const dF &kdf)
Constructor.
Definition: GslFunctionFdfAdapter.hpp:31
const dF & df_
dF must be a functor. dF is derivative of F.
Definition: GslFunctionFdfAdapter.hpp:64