Skip to content

Commit 4799e03

Browse files
Update scipy.md
1 parent 071f96b commit 4799e03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/optimization_packages/scipy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ sol = solve(prob, ScipyCOBYLA())
9797
### Differential evolution (global) with custom options
9898

9999
```@example SciPy3
100-
using Optimization, OptimizationSciPy, Random
100+
using Optimization, OptimizationSciPy, Random, Statistics
101101
Random.seed!(123)
102102
103103
ackley(x, p) = -20exp(-0.2*sqrt(mean(x .^ 2))) - exp(mean(cos.(2π .* x))) + 20 + ℯ
@@ -129,4 +129,4 @@ If SciPy raises an error it is re-thrown as a Julia `ErrorException` carrying th
129129

130130
## Contributing
131131

132-
Bug reports and feature requests are welcome in the [Optimization.jl](https://github.com/SciML/Optimization.jl) issue tracker. Pull requests that improve either the Julia wrapper or the documentation are highly appreciated.
132+
Bug reports and feature requests are welcome in the [Optimization.jl](https://github.com/SciML/Optimization.jl) issue tracker. Pull requests that improve either the Julia wrapper or the documentation are highly appreciated.

0 commit comments

Comments
 (0)