From e1940d4926628366ccdffe37a9d78b4516f47e3a Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Wed, 25 Oct 2023 16:35:06 +0200 Subject: [PATCH] Update docs/src/solvers/NonlinearSystemSolvers.md --- docs/src/solvers/NonlinearSystemSolvers.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/src/solvers/NonlinearSystemSolvers.md b/docs/src/solvers/NonlinearSystemSolvers.md index 89cde3513..7664bce10 100644 --- a/docs/src/solvers/NonlinearSystemSolvers.md +++ b/docs/src/solvers/NonlinearSystemSolvers.md @@ -66,9 +66,11 @@ features, but have a bit of overhead on very small problems. with fallbacks to robust methods to allow for solving easy problems quickly without sacrificing robustnes on the hard problems. - `GeneralBroyden()`: Generalization of Broyden's Quasi-Newton Method with Line Search and - Automatic Jacobian Resetting. This is a fast method but unstable for most problems! + Automatic Jacobian Resetting. This is a fast method but unstable when the condition number of + the Jacobian matrix is sufficiently large. - `GeneralKlement()`: Generalization of Klement's Quasi-Newton Method with Line Search and - Automatic Jacobian Resetting. This is a fast method but unstable for most problems! + Automatic Jacobian Resetting. This is a fast method but unstable when the condition number of + the Jacobian matrix is sufficiently large. ### SimpleNonlinearSolve.jl