Skip to content
Snippets Groups Projects
Verified Commit 40a525ee authored by Johannes Pfeifer's avatar Johannes Pfeifer Committed by Sébastien Villemot
Browse files

dynare_solve.m: honor tolx in fsolve

(cherry picked from commit 31ea784a)
parent 9c242ca6
No related branches found
No related tags found
No related merge requests found
Checking pipeline status
...@@ -180,6 +180,7 @@ if options.solve_algo == 0 ...@@ -180,6 +180,7 @@ if options.solve_algo == 0
options4fsolve.MaxFunEvals = 50000; options4fsolve.MaxFunEvals = 50000;
options4fsolve.MaxIter = maxit; options4fsolve.MaxIter = maxit;
options4fsolve.TolFun = tolf; options4fsolve.TolFun = tolf;
options4fsolve.TolX = tolx;
if options.debug==1 if options.debug==1
options4fsolve.Display = 'final'; options4fsolve.Display = 'final';
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment