diff options
author | tlatorre <tlatorre@uchicago.edu> | 2018-11-27 09:21:51 -0600 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2018-11-27 09:21:51 -0600 |
commit | cf6482edbd51e608f2455238800efbb0c52ba559 (patch) | |
tree | a579f87f98e4c6bbb23e6292ed5e35c9ae5bbcef | |
parent | 4f84f5bdfb09fa299cc48020c5ece340bb45822e (diff) | |
download | sddm-cf6482edbd51e608f2455238800efbb0c52ba559.tar.gz sddm-cf6482edbd51e608f2455238800efbb0c52ba559.tar.bz2 sddm-cf6482edbd51e608f2455238800efbb0c52ba559.zip |
update dx_shower to 10 cm to speed things up
-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); |