Skip to content

Commit

Permalink
Merge pull request #79 from yash2798/ys/readme
Browse files Browse the repository at this point in the history
minor Readme changes
  • Loading branch information
ChrisRackauckas committed Sep 15, 2023
2 parents 21f14ff + 4e6893b commit 6440563
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 6440563

Please sign in to comment.