File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ The simplest copy-pasteable code using a quasi-Newton method (LBFGS) to solve th
1414
1515``` @example intro
1616# Import the package and define the problem to optimize
17- using OptimizationLBFGSB, Zygote
17+ using SciMLBase, OptimizationLBFGSB, Zygote
1818rosenbrock(u, p) = (p[1] - u[1])^2 + p[2] * (u[2] - u[1]^2)^2
1919u0 = zeros(2)
2020p = [1.0, 100.0]
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ The SciML interface provides a `remake` function which allows you to recreate th
1111Let's look at a 10 dimensional schwefel function in the hypercube $x_i \in [ -500, 500] $.
1212
1313``` @example polyalg
14- using OptimizationLBFGSB, Random
14+ using SciMLBase, OptimizationLBFGSB, Random
1515using OptimizationBBO, ReverseDiff
1616
1717Random.seed!(122333)
You can’t perform that action at this time.
0 commit comments