JuliaNLSolvers / NLsolve.jl

Julia solvers for systems of nonlinear equations and mixed complementarity problems

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Declaration of Convergence xtol and ftol

shakisparki opened this issue · comments

Solver stops iterating once xtol or ftol constraints are met. Is there a way to keep the solver finding solutions until both constraints are met?

z1

z2

I can easily change this from the assess_convergence function using converged = x_converged && f_converged

But wouldn't it be nice if this was an option to the user in future releases?

We should be able to do this with callbacks