We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cd00b8e + 8e40226 commit b1373d3Copy full SHA for b1373d3
README.md
@@ -3,7 +3,7 @@
3
Fast implementations of root finding algorithms in Julia that satisfy the SciML common interface.
4
5
```julia
6
-using NonlinearSolve
+using NonlinearSolve, StaticArrays
7
8
f(u,p) = u .* u .- 2
9
u0 = @SVector[1.0, 1.0]
@@ -41,9 +41,11 @@ f(u, p) = u .* u .- 2.0
41
u0 = (1.0, 2.0) # brackets
42
probB = NonlinearProblem(f, u0)
43
solver = init(probB, Falsi()) # Can iterate the solver object
44
-solve!(solver)
+solver = solve!(solver)
45
```
46
47
+Note that the `solver` object is actually immutable since we want to make it live on the stack for the sake of performance.
48
+
49
## Roadmap
50
51
The current algorithms should support automatic differentiation, though improved adjoint overloads are planned
0 commit comments