Merge branch 'tolerance' into 'master'

Nonlinear solver: tolerance for first Newton iteration is now smaller than for subsequent ones

See merge request Dynare/dynare!1674
time-shift
Sébastien Villemot 2019-11-27 13:21:51 +00:00
commit c5537e23ae
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ end
f = 0.5*(fvec'*fvec) ;
if max(abs(fvec)) < tolf
if max(abs(fvec)) < tolf*tolf
return ;
end