diff options
Diffstat (limited to 'src/fit.c')
-rw-r--r-- | src/fit.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5213,7 +5213,7 @@ int fit_event(event *ev, double *xopt, double *fmin, int id) * maximum number of function evaluations to 100, and the relative * tolerance on the numerical integration to 10%. */ fpars.dx = 1.0; - fpars.dx_shower = 1.0; + fpars.dx_shower = 10.0; fpars.fast = 1; fpars.print = 0; nlopt_set_ftol_abs(opt, 1.0); @@ -5307,7 +5307,7 @@ int fit_event(event *ev, double *xopt, double *fmin, int id) /* Now, we do the "real" minimization. */ fpars.dx = 1.0; - fpars.dx_shower = 1.0; + fpars.dx_shower = 10.0; fpars.fast = 0; fpars.print = 1; nlopt_set_ftol_abs(opt, 1e-5); |