From 4924afe80634ae8ccf9acde2951d3fcdd501906a Mon Sep 17 00:00:00 2001 From: tlatorre Date: Sun, 21 Oct 2018 12:58:52 -0500 Subject: set default number of points to 500 --- src/fit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/fit.c b/src/fit.c index ba285c9..eba125e 100644 --- a/src/fit.c +++ b/src/fit.c @@ -5279,7 +5279,7 @@ int fit_event(event *ev, double *xopt, double *fmin) nlopt_set_upper_bounds(opt, ub); /* Now, we do the "real" minimization. */ - fpars.n = 100; + fpars.n = 500; fpars.fast = 0; fpars.print = 1; nlopt_set_ftol_abs(opt, 1e-5); -- cgit