We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0939fdf + bf8859b commit f35f510Copy full SHA for f35f510
docs/src/optimization_packages/nlopt.md
@@ -93,7 +93,7 @@ The Rosenbrock function can be optimized using the `NLopt.LN_NELDERMEAD()` as fo
93
94
```@example NLopt1
95
using Optimization
96
-using NLopt
+using OptimizationNLopt
97
rosenbrock(x, p) = (p[1] - x[1])^2 + p[2] * (x[2] - x[1]^2)^2
98
x0 = zeros(2)
99
p = [1.0, 100.0]
0 commit comments