Skip to content

Commit bcaaef7

Browse files
committed
clean up docs a bit more
1 parent 179788f commit bcaaef7

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

docs/make.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ makedocs(
88
authors = "Tamas K. Papp",
99
sitename = "MultistartOptimization.jl",
1010
pages = Any["index.md"],
11-
strict = true,
12-
clean = true,
1311
checkdocs = :exports,
1412
)
1513

docs/src/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ using MultistartOptimization, NLopt
1111
1212
f(x) = sum(x -> abs2(x - 1), x) # objecive ∑(xᵢ-1)²
1313
P = MinimizationProblem(f, fill(-2, 4), fill(2, 4)) # search in [-2, 2]⁴
14-
local_method = NLoptLocalMethod(NLopt.LN_BOBYQA) # loaded on demand with `using NLopt`
14+
local_method = NLopt_local_method(NLopt.LN_BOBYQA) # loaded on demand with `using NLopt`
1515
multistart_method = TikTak(100)
1616
p = multistart_minimization(multistart_method, local_method, P)
1717
```
@@ -36,8 +36,8 @@ Local methods are based on other optimization packages, and loaded on demand.
3636

3737
### NLopt
3838

39-
Available after `NLopt` is loaded, eg with `using NLopt`.
39+
After `NLopt` is loaded, the following is made available.
4040

4141
```@docs
42-
NLoptLocalMethod
42+
NLopt_local_method
4343
```

0 commit comments

Comments
 (0)