Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit 6440563

Browse files
Merge pull request #79 from yash2798/ys/readme
minor Readme changes
2 parents 21f14ff + 4e6893b commit 6440563

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,7 @@ solver = solve(probN, SimpleNewtonRaphson(), tol = 1e-9)
3535
f(u, p) = u .* u .- 2.0
3636
u0 = (1.0, 2.0) # brackets
3737
probB = IntervalNonlinearProblem(f, u0)
38-
sol = solve(probB, Falsi())
38+
sol = solve(probB, ITP())
3939
```
40+
41+
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)

0 commit comments

Comments
 (0)