fix number of iterations

This commit is contained in:
Jonathan Bosson
2017-04-13 16:59:34 -06:00
parent 99c5956588
commit 626c39b62e

View File

@@ -155,7 +155,7 @@ int levmarq(int npar, double *par, int ny, double *y, double *dysq,
delete[] delta;
delete[] newpar;
return it;
return (it+1);
}