-
Notifications
You must be signed in to change notification settings - Fork 5
/
mkdocs.yml
131 lines (114 loc) · 3.73 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
site_name: SOLA
site_author: The SOLA team @ Fraunhofer IML
site_description: Documentation about SOLA
site_dir: html
site_url: https://iml130.github.io/sola/
use_directory_urls: false
repo_name: iml130/sola
repo_url: https://github.com/iml130/sola
edit_uri: ""
nav:
- Home:
- Index: index.md
- Introduction: index.md
- Getting Started: getting_started.md
- SOLA:
- Using SOLA: sola/usage.md
- Component Implementations: sola/component_implementations.md
- "Example: Decentralized Communication": sola/decentralized_communication.md
- Logging: sola/logging.md
- Glossary: sola/glossary.md
- MINHTON:
- Introduction: minhton/introduction.md
- Using MINHTON: minhton/using.md
- Programmers Manual:
- Concept: minhton/programmers/concept.md
- Messages: minhton/programmers/messages.md
- Algorithms:
- Introduction: minhton/algorithms/index.md
- Join: minhton/algorithms/join.md
- Join Accept: minhton/algorithms/join_accept.md
- Leave: minhton/algorithms/leave.md
- Concurrent Leave: minhton/algorithms/leave_concurrent.md
- Bootstrap: minhton/algorithms/bootstrap.md
- TreeMapper: minhton/algorithms/treemapper.md
- FSM: minhton/programmers/fsm.md
- Glossary: minhton/glossary.md
- NATTER:
- Introduction: natter/introduction.md
- Using natter: natter/using.md
- Programmers Manual:
- Architecture: natter/programmers/architecture.md
- Logging: natter/programmers/logging.md
- Algorithms:
- MINHCAST: natter/programmers/minhcast.md
- Known Limitations: natter/known-limitations.md
- Glossary: natter/glossary.md
- OptiMaFlow:
- Introduction: optimaflow/introduction.md
- Participants:
- Material Flow: optimaflow/participants/material_flow.md
- Autonomous Mobile Robot: optimaflow/participants/amr.md
- Task Assignment:
- Centralized: optimaflow/task_assignment/centralized.md
- Decentralized: optimaflow/task_assignment/decentralized.md
- Glossary: optimaflow/glossary.md
- ns-3 Integration:
- Introduction: daisi/introduction.md
- Using DAISI: daisi/using.md
- Architecture: daisi/architecture.md
- SOLA:
- Scenariofile: daisi/sola-ns3/scenariofile.md
- Logging: daisi/sola-ns3/logging.md
- MINHTON:
- Scenariofile: daisi/minhton-ns3/scenariofile.md
- Logging: daisi/minhton-ns3/logging.md
- NATTER:
- Scenariofile: daisi/natter-ns3/scenariofile.md
- Logging: daisi/natter-ns3/logging.md
- OptiMaFlow:
- Scenariofile: daisi/optimaflow-ns3/scenariofile.md
- Logging: daisi/optimaflow-ns3/logging.md
- Specifics: daisi/optimaflow-ns3/specifics.md
- Doxygen: https://iml130.github.io/sola/doxygen/index.html
- Glossary: glossary.md
theme:
name: material
palette:
- scheme: sola
features:
- navigation.indexes
- navigation.instant
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top # back to top button visible
- navigation.tracking
- content.code.annotate
- content.code.copy
- content.tooltips
- search.highlight
- search.share
- search.suggest
- toc.follow
font: false # Use system fonts
logo: img/sola_dark.png
favicon: img/sola_dark.png
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
extra_css:
- stylesheets/extra.css
markdown_extensions:
- md_in_html
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
- admonition
- attr_list
copyright: Copyright © The SOLA authors