-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
125 lines (111 loc) · 3.37 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
site_name: flowpaths
repo_url: https://github.com/algbio/flowpaths
nav:
- Home:
- About: index.md
- References: references.md
- Decomposition models:
- Models:
- Minimum Flow Decomposition: minimum-flow-decomposition.md
- $k$-Flow Decomposition: k-flow-decomposition.md
- $k$-Least Absolute Errors: k-least-absolute-errors.md
- $k$-Minimum Path Error: k-min-path-error.md
- Optimizing $k$: numpathsoptimization.md
- Additional features:
- Flows/weights on nodes: node-expanded-digraph.md
- Subpath constraints: subpath-constraints.md
- Ignoring edges: ignoring-edges.md
- Additional start/end nodes: additional-start-end-nodes.md
- Correcting weights: minimum-error-flow.md
- Further options:
- Solver options and optimizations: solver-options-optimizations.md
- Various utils: utils.md
- Developing new models:
- Abstract Path Model: abstract-path-model.md
- Solver Wrapper: solver-wrapper.md
- stDiGraph: stdigraph.md
- Minimum Generating Set: minimum-generating-set.md
- Minimum Set Cover: minimum-set-cover.md
use_directory_urls: false
theme:
name: material
theme:
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
primary: black
toggle:
icon: material/lightbulb-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
primary: black
scheme: default
toggle:
icon: material/lightbulb
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
primary: black
scheme: slate
toggle:
icon: material/lightbulb-outline
name: Switch to system preference
features:
- content.code.copy
- navigation.tabs
- navigation.tabs.sticky
- navigation.expand
- navigation.path
logo: flowpaths-logo.svg
favicon: flowpaths-logo.svg
icon:
repo: fontawesome/brands/github
extra_javascript:
- javascripts/katex.js
- https://unpkg.com/katex@0/dist/katex.min.js
- https://unpkg.com/katex@0/dist/contrib/auto-render.min.js
extra_css:
- https://unpkg.com/katex@0/dist/katex.min.css
markdown_extensions:
- pymdownx.highlight:
use_pygments: true
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- attr_list
- md_in_html
- smarty
- admonition
- pymdownx.arithmatex:
generic: true
- pymdownx.details
plugins:
- search
- macros:
module_name: docs/getversion
- mkdocstrings:
default_handler: python
handlers:
python:
inventories:
- url: https://docs.python-requests.org/en/master/objects.inv
domains: [std, py]
options:
show_root_toc_entry: false
# docstring_options:
merge_init_into_class: true
# docstring_section_style: spacy
separate_signature: true
show_signature_annotations: true
modernize_annotations: true
signature_crossrefs: false
line_length: 30
load_external_modules: true