#include <multi_funct.h>
Definition at line 666 of file multi_funct.h.
Public Member Functions | |
multi_vfunct_mfptr_noerr (tclass *tp, double(tclass::*fp)(size_t nv, const double x[nvar], param_t &pa)) | |
Specify the member function pointer. | |
virtual | ~multi_vfunct_mfptr_noerr () |
virtual int | operator() (size_t nv, const double x[nvar], double &y, param_t &pa) |
Compute a function y of nv variables stored in x with parameter pa . | |
virtual double | operator() (size_t nv, const double x[nvar], param_t &pa) |
Return the value of a function of nv variables stored in x with parameter pa . | |
Protected Attributes | |
double(tclass::* | fptr )(size_t nv, const double x[nvar], param_t &pa) |
Store the function pointer. | |
tclass * | tptr |
Store a pointer to the class instance. | |
Private Member Functions | |
multi_vfunct_mfptr_noerr (const multi_vfunct_mfptr_noerr &) | |
multi_vfunct_mfptr_noerr & | operator= (const multi_vfunct_mfptr_noerr &) |
virtual double operator() | ( | size_t | nv, | |
const double | x[nvar], | |||
param_t & | pa | |||
) | [inline, virtual] |
Return the value of a function of nv
variables stored in x
with parameter pa
.
Note that this is reimplemented in all children because if one member function operator() is reimplemented, all must be.
Reimplemented from multi_vfunct.
Definition at line 694 of file multi_funct.h.