Skip to content

Commit 6171954

Browse files
Merge pull request #177 from SciML/docs
Remove "higher level docs" and put a higher level table
2 parents 845ef34 + 5b05cb4 commit 6171954

File tree

9 files changed

+9
-804
lines changed

9 files changed

+9
-804
lines changed

docs/make.jl

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -41,18 +41,6 @@ makedocs(
4141
"Optim.jl" => "optimization_packages/optim.md",
4242
"QuadDIRECT.jl" => "optimization_packages/quaddirect.md"
4343
],
44-
45-
"Local Optimizers" => [
46-
"local_optimizers/local_gradient.md",
47-
"local_optimizers/local_derivative_free.md",
48-
"local_optimizers/local_hessian.md",
49-
"local_optimizers/local_hessian_free.md"
50-
],
51-
52-
"Global Optimizers" => [
53-
"global_optimizers/global.md",
54-
"global_optimizers/global_constrained.md"
55-
]
5644
]
5745
)
5846

docs/src/global_optimizers/global.md

Lines changed: 0 additions & 100 deletions
This file was deleted.

docs/src/global_optimizers/global_constrained.md

Lines changed: 0 additions & 54 deletions
This file was deleted.

docs/src/index.md

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,14 @@ import Pkg; Pkg.add("GalacticOptim")
2020
```
2121
The packages relevant to the core functionality of GalacticOptim.jl will be imported
2222
accordingly and, in most cases, you do not have to worry about the manual
23-
installation of dependencies. Below is the list of packages that need to be
24-
installed explicitly if you intend to use the specific optimization algorithms
25-
offered by them:
23+
installation of dependencies. However, you will need to add the specific optimizer
24+
packages.
2625

27-
- [BlackBoxOptim.jl](https://github.com/robertfeldt/BlackBoxOptim.jl)
28-
- [NLopt.jl](https://github.com/JuliaOpt/NLopt.jl)
29-
- [MultistartOptimization.jl](https://github.com/tpapp/MultistartOptimization.jl)
30-
- [QuadDIRECT.jl](https://github.com/timholy/QuadDIRECT.jl)
31-
- [Evolutionary.jl](https://wildart.github.io/Evolutionary.jl/dev/)
32-
- [CMAEvolutionStrategy.jl](https://github.com/jbrea/CMAEvolutionStrategy.jl)
26+
## Overview of the Optimizers
3327

34-
The following optimization packages are included by default:
35-
36-
- [Flux.jl](https://fluxml.ai/)
37-
- [Optim.jl](https://julianlsolvers.github.io/Optim.jl/stable/)
28+
| Package | Local Gradient-Based | Local Hessian-Based | Local Derivative-Free | Local Constrained | Global Unconstrained | Global Constrained |
29+
|---------------|----------------------|---------------------|-----------------------|-------------------|----------------------|--------------------|
30+
| Flux | x | | | | | |
31+
| Optim | x | x | x | x | x | x |
32+
| BlackBoxOptim | | | | | x | |
33+
| NLopt | x | x | x | x | x | x |

docs/src/local_optimizers/local_constrained.md

Lines changed: 0 additions & 149 deletions
This file was deleted.

0 commit comments

Comments
 (0)