dynare_solve.m: honor tolx in fsolve

mr#2067
Johannes Pfeifer 2022-05-17 15:27:21 +02:00
parent c033a08cec
commit 31ea784a5c
1 changed files with 1 additions and 0 deletions

View File

@ -165,6 +165,7 @@ if options.solve_algo == 0
options4fsolve.MaxFunEvals = 50000;
options4fsolve.MaxIter = maxit;
options4fsolve.TolFun = tolf;
options4fsolve.TolX = tolx;
if options.debug==1
options4fsolve.Display = 'final';
else