You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/1_basic.jl
+16-15Lines changed: 16 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Note that some packages from the [SciML](https://sciml.ai/) ecosystem provide a
12
12
using ForwardDiff
13
13
using ImplicitDifferentiation
14
14
using LinearAlgebra
15
-
using NLsolve
15
+
import NonlinearSolve as NLS
16
16
using Optim
17
17
using Test #src
18
18
using Zygote
@@ -126,22 +126,23 @@ To make verification easy, we solve the following system:
126
126
```math
127
127
c(x, y) = y \odot y - x = 0
128
128
```
129
-
In this case, the optimization problem boils down to the componentwise square root function, but we implement it using a black box solver from [NLsolve.jl](https://github.com/JuliaNLSolvers/NLsolve.jl).
129
+
In this case, the optimization problem boils down to the componentwise square root function, but we implement it using a black box solver from [NonlinearSolve.jl](https://github.com/SciML/NonlinearSolve.jl).
0 commit comments