Skip to content

Commit

Permalink
Merge pull request #84 from TomRottier/patch-1
Browse files Browse the repository at this point in the history
Fix error in README example
  • Loading branch information
ChrisRackauckas authored Oct 16, 2023
2 parents a6e6c0d + c6a6413 commit 4814334
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/SimpleNonlinearSolve/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ using SimpleNonlinearSolve, StaticArrays
f(u,p) = u .* u .- 2
u0 = @SVector[1.0, 1.0]
probN = NonlinearProblem{false}(f, u0)
solver = solve(probN, SimpleNewtonRaphson(), tol = 1e-9)
solver = solve(probN, SimpleNewtonRaphson(), abstol = 1e-9)

## Bracketing Methods

Expand Down

0 comments on commit 4814334

Please sign in to comment.