Skip to content

Commit f35f510

Browse files
Merge pull request SciML#454 from DanielVandH/patch-1
Change NLopt to OptimizationNLopt
2 parents 0939fdf + bf8859b commit f35f510

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/optimization_packages/nlopt.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ The Rosenbrock function can be optimized using the `NLopt.LN_NELDERMEAD()` as fo
9393

9494
```@example NLopt1
9595
using Optimization
96-
using NLopt
96+
using OptimizationNLopt
9797
rosenbrock(x, p) = (p[1] - x[1])^2 + p[2] * (x[2] - x[1]^2)^2
9898
x0 = zeros(2)
9999
p = [1.0, 100.0]

0 commit comments

Comments
 (0)