From 09180cec58cacc2cd35ab9b1518ce20e94f21608 Mon Sep 17 00:00:00 2001 From: Yash Raj Singh Date: Fri, 15 Sep 2023 02:14:07 +0200 Subject: [PATCH] readme fix --- lib/SimpleNonlinearSolve/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/SimpleNonlinearSolve/README.md b/lib/SimpleNonlinearSolve/README.md index 818872c0b..f6715e696 100644 --- a/lib/SimpleNonlinearSolve/README.md +++ b/lib/SimpleNonlinearSolve/README.md @@ -35,5 +35,7 @@ solver = solve(probN, SimpleNewtonRaphson(), tol = 1e-9) f(u, p) = u .* u .- 2.0 u0 = (1.0, 2.0) # brackets probB = IntervalNonlinearProblem(f, u0) -sol = solve(probB, Falsi()) +sol = solve(probB, ITP()) ``` + +For more details on the bracketing methods, refer to the [Tutorials](https://docs.sciml.ai/NonlinearSolve/stable/tutorials/nonlinear/#Using-Bracketing-Methods) and detailed [APIs](https://docs.sciml.ai/NonlinearSolve/stable/api/simplenonlinearsolve/#Solver-API)