Skip to content

Commit 2c28ea3

Browse files
Merge pull request #161 from SciML/ChrisRackauckas-patch-1
Just use IIP inference
2 parents f32e596 + 825cecb commit 2c28ea3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/tutorials/nonlinear.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ using NonlinearSolve, StaticArrays
1010
f(u, p) = u .* u .- p
1111
u0 = @SVector[1.0, 1.0]
1212
p = 2.0
13-
probN = NonlinearProblem{false}(f, u0, p)
13+
probN = NonlinearProblem(f, u0, p)
1414
solver = solve(probN, NewtonRaphson(), reltol = 1e-9)
1515
```
1616

0 commit comments

Comments
 (0)