-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmake.jl
49 lines (47 loc) · 1.57 KB
/
make.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using Documenter, Nonconvex
Nonconvex.@load MMA Ipopt NLopt Percival Bayesian Hyperopt Juniper Pavito MTS Semidefinite
makedocs(
sitename="Nonconvex.jl",
pages = [
"Getting started" => "index.md",
"Problem definition" => [
"Overview" => "problem/problem.md",
"`Model` definition" => "problem/model.md",
"`DictModel` definition" => "problem/dict_model.md",
"Querying models" => "problem/queries.md",
],
"Gradients, Jacobians and Hessians" => [
"Overview" => "gradients/gradients.md",
"gradients/user_defined.md",
"gradients/other_ad.md",
"gradients/chainrules_fd.md",
"gradients/sparse.md",
"gradients/symbolic.md",
"gradients/implicit.md",
"gradients/history.md",
],
"Algorithms" => [
"Overview" => "algorithms/algorithms.md",
"algorithms/mma.md",
"algorithms/ipopt.md",
"algorithms/nlopt.md",
"algorithms/auglag.md",
"algorithms/minlp.md",
"algorithms/hyperopt.md",
"algorithms/surrogate.md",
"algorithms/mts.md",
"algorithms/sdp.md",
"algorithms/metaheuristics.md",
"algorithms/nomad.md",
"algorithms/tobs.md",
],
"Optimization result" => "result.md"
],
warnonly = true,
)
if get(ENV, "CI", nothing) == "true"
deploydocs(
repo = "github.com/JuliaNonconvex/Nonconvex.jl.git",
push_preview=true,
)
end