-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmkdocs.yml
63 lines (57 loc) · 2.32 KB
/
mkdocs.yml
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
site_name: NLSolvers.jl
repo_url: https://github.com/JuliaNLSolvers/NLSolvers.jl
site_description: Pure Julia implementations of optimization algorithms.
site_author: Patrick Kofod Mogensen
theme: windmill
markdown_extensions:
# - codehilite
- extra
- tables
- fenced_code
- mdx_math
- admonition
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS_HTML
- assets/mathjaxhelper.js
extra_css:
- assets/Documenter.css
docs_dir: 'build'
nav:
- Home: 'index.md'
- Tutorials:
- Minimizing a function: 'optimization.md'
- Solving non-linear equations: 'nonlineareq.md'
- Solving non-linear least squares problems: 'leastsquares.md'
- Extensions:
- Using extensions: 'extensions.md'
# - Gradients and Hessians: 'user/gradientsandhessians.md'
# - Configurable Options: 'user/config.md'
# - Linesearch: 'algo/linesearch.md'
# - Algorithm choice: 'user/algochoice.md'
# - Preconditioners: 'algo/precondition.md'
# - Complex optimization: 'algo/complex.md'
# - Manifolds: 'algo/manifolds.md'
# - Tips and tricks: 'user/tipsandtricks.md'
# - Interior point Newton: 'examples/generated/ipnewton_basics.md'
# - Maximum likelihood estimation: 'examples/generated/maxlikenlm.md'
# - Conditional maximum likelihood estimation: 'examples/generated/rasch.md'
# - Algorithms:
# - Gradient Free:
# - Nelder Mead: 'algo/nelder_mead.md'
# - Simulated Annealing: 'algo/simulated_annealing.md'
# - Simulated Annealing w/ bounds: 'algo/samin.md'
# - Particle Swarm: 'algo/particle_swarm.md'
# - Univariate:
# - Brent's Method: 'algo/brent.md'
# - Golden Section: 'algo/goldensection.md'
# - Gradient Required:
# - 'Conjugate Gradient': 'algo/cg.md'
# - 'Gradient Descent': 'algo/gradientdescent.md'
# - '(L-)BFGS': 'algo/lbfgs.md'
# - 'Acceleration': 'algo/ngmres.md'
# - Hessian Required:
# - Newton: 'algo/newton.md'
# - Newton with Trust Region: 'algo/newton_trust_region.md'
# - Interior point Newton: 'algo/ipnewton.md'
# - Contributing: 'dev/contributing.md'
# - License: 'LICENSE.md'