From 0bdf5273e1f2f72bf429156f866d60dd10570cad Mon Sep 17 00:00:00 2001 From: Yash Raj Singh Date: Wed, 30 Aug 2023 00:50:27 +0200 Subject: [PATCH] problem type split --- docs/src/api/simplenonlinearsolve.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/docs/src/api/simplenonlinearsolve.md b/docs/src/api/simplenonlinearsolve.md index 2c27f9000..213b3b813 100644 --- a/docs/src/api/simplenonlinearsolve.md +++ b/docs/src/api/simplenonlinearsolve.md @@ -4,17 +4,28 @@ These methods can be used independently of the rest of NonlinearSolve.jl ## Solver API +### Interval Methods + +These methods are suited for interval (scalar) root-finding problems, i.e. `IntervalNonlinearProblem`. + ```@docs -Bisection ITP +Bisection Falsi +Ridder +Brent +``` + +### General Methods + +These methods are suited for any general nonlinear root-finding problem , i.e. `NonlinearProblem`. + +```@docs SimpleNewtonRaphson Broyden Halley Klement SimpleTrustRegion -Ridder -Brent SimpleDFSane LBroyden ```