1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-11-10 00:45:36 +00:00

DoubleModel: infinite recursion in model call fixed

This commit is contained in:
Antonin Portelli 2014-03-17 14:59:39 +00:00
parent b9d7681b76
commit be3e1b02ba

View File

@ -89,7 +89,7 @@ double DoubleModel::operator()(const vector<double> &arg,
double DoubleModel::operator()(const double *data, const double *par) const
{
return (*this)(data, par);
return f_(data, par);
}
// model bind //////////////////////////////////////////////////////////////////