-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
62 lines (59 loc) · 1.55 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
site_name: SBArchOpt
site_url: https://sbarchopt.readthedocs.io/
repo_url: https://github.com/jbussemaker/SBArchOpt
docs_dir: docs
copyright: © 2024, Deutsches Zentrum für Luft- und Raumfahrt e.V.
theme:
name: material
logo: icon.png
favicon: icon.png
palette:
scheme: default
primary: custom
features:
- navigation.tabs
custom_dir: docs/overrides
extra_css:
- style.css
nav:
- 'Overview': index.md
- Optimization:
- 'pymoo': 'algo/pymoo.md'
- 'ArchSBO': 'algo/arch_sbo.md'
- 'BoTorch (Ax)': 'algo/botorch.md'
- 'Trieste': 'algo/trieste.md'
- 'HEBO': 'algo/hebo.md'
- 'SEGOMOE': 'algo/segomoe.md'
- 'SMARTy': 'algo/smarty.md'
- Tutorials:
- SBArchOpt: tutorial.ipynb
- 'Test Problems': 'test_problems.md'
- API Reference:
- Problem Definition: 'api/problem.md'
- pymoo: 'api/pymoo.md'
- ArchSBO: 'api/arch_sbo.md'
- 'BoTorch (Ax)': 'api/botorch.md'
- 'Trieste': 'api/trieste.md'
- 'HEBO': 'api/hebo.md'
- 'SEGOMOE': 'api/segomoe.md'
- 'SMARTy': 'api/smarty.md'
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
plugins:
- mkdocs-jupyter
- mkdocstrings:
handlers:
python:
options:
allow_inspection: true
show_root_heading: true
show_source: false
show_bases: false
show_signature_annotations: true
merge_init_into_class: true