Skip to content

Commit 0b1807e

Browse files
committed
fix docs
1 parent 1408b96 commit 0b1807e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/src/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
1818
rosenbrock(u, p) = (p[1] - u[1])^2 + p[2] * (u[2] - u[1]^2)^2
1919
u0 = zeros(2)
2020
p = [1.0, 100.0]

docs/src/tutorials/remakecomposition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The SciML interface provides a `remake` function which allows you to recreate th
1111
Let'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
1515
using OptimizationBBO, ReverseDiff
1616
1717
Random.seed!(122333)

0 commit comments

Comments
 (0)