-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
203 lines (196 loc) · 6.76 KB
/
mkdocs.yml
File metadata and controls
203 lines (196 loc) · 6.76 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
site_name: solvOR
site_url: https://solvOR.ai
site_description: Pure Python optimization library, zero dependencies, maximum performance
site_author: Steven Bytheway
repo_url: https://github.com/StevenBtw/solvOR
repo_name: StevenBtw/solvOR
edit_uri: edit/main/docs/
theme:
name: material
palette:
- scheme: slate
primary: custom
accent: teal
toggle:
icon: material/brightness-4
name: Switch to light mode
- scheme: default
primary: custom
accent: teal
toggle:
icon: material/brightness-7
name: Switch to dark mode
features:
- navigation.instant
- navigation.instant.prefetch
- navigation.tracking
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.top
- search.suggest
- search.highlight
- content.code.copy
- content.code.annotate
- content.tabs.link
icon:
repo: fontawesome/brands/github
logo: assets/logo.svg
favicon: assets/favicon.ico
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
show_source: true
show_root_heading: true
show_symbol_type_heading: true
show_symbol_type_toc: true
docstring_style: google
- git-revision-date-localized:
enable_creation_date: true
type: timeago
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.snippets:
base_path: ["."]
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/StevenBtw/solvOR
- icon: fontawesome/brands/python
link: https://pypi.org/project/solvOR/
generator: false
meta:
- property: og:type
content: website
- property: og:image
content: https://solvor.ai/assets/social-card.png
- property: og:image:width
content: "1200"
- property: og:image:height
content: "630"
- name: twitter:card
content: summary_large_image
extra_javascript:
- javascripts/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
extra_css:
- stylesheets/extra.css
nav:
- Home: index.md
- Getting Started:
- Installation: getting-started/installation.md
- Quick Start: getting-started/quickstart.md
- Choosing a Solver: getting-started/choosing-solver.md
- Performance: getting-started/performance.md
- Algorithms:
- Overview: algorithms/index.md
- Linear Programming:
- solve_lp: algorithms/linear-programming/solve-lp.md
- solve_lp_interior: algorithms/linear-programming/solve-lp-interior.md
- solve_milp: algorithms/linear-programming/solve-milp.md
- solve_cg: algorithms/linear-programming/solve-cg.md
- solve_bp: algorithms/linear-programming/solve-bp.md
- Constraint Programming:
- solve_sat: algorithms/constraint-programming/solve-sat.md
- Model (CP): algorithms/constraint-programming/cp.md
- solve_exact_cover: algorithms/constraint-programming/solve-exact-cover.md
- Metaheuristics:
- Overview: algorithms/metaheuristics/index.md
- Simulated Annealing: algorithms/metaheuristics/anneal.md
- Tabu Search: algorithms/metaheuristics/tabu.md
- Genetic Algorithms: algorithms/metaheuristics/genetic.md
- LNS / ALNS: algorithms/metaheuristics/lns.md
- Continuous Optimization:
- Overview: algorithms/continuous/index.md
- Gradient Descent: algorithms/continuous/gradient.md
- BFGS / L-BFGS: algorithms/continuous/bfgs.md
- Nelder-Mead: algorithms/continuous/nelder-mead.md
- Powell: algorithms/continuous/powell.md
- Bayesian Optimization: algorithms/continuous/bayesian.md
- Differential Evolution: algorithms/continuous/differential-evolution.md
- Particle Swarm: algorithms/continuous/particle-swarm.md
- Graph Algorithms:
- Overview: algorithms/graph/index.md
- Pathfinding: algorithms/graph/pathfinding.md
- Shortest Paths: algorithms/graph/shortest-paths.md
- Dependency Analysis: algorithms/graph/dependency-analysis.md
- Centrality: algorithms/graph/centrality.md
- Community Detection: algorithms/graph/community-detection.md
- Network Flow: algorithms/graph/network-flow.md
- Minimum Spanning Tree: algorithms/graph/mst.md
- Combinatorial:
- Overview: algorithms/combinatorial/index.md
- Knapsack: algorithms/combinatorial/knapsack.md
- Bin Packing: algorithms/combinatorial/bin-packing.md
- Job Shop: algorithms/combinatorial/job-shop.md
- VRP: algorithms/combinatorial/vrp.md
- Examples:
- Overview: examples/index.md
- Quick Examples: examples/quick-examples.md
- Classic Problems: examples/classic.md
- Puzzles: examples/puzzles.md
- Real World: examples/real-world.md
- OR-Tools: examples/ortools.md
- Cookbook:
- Overview: cookbook/index.md
- TSP: cookbook/tsp.md
- Sudoku: cookbook/sudoku.md
- Knapsack: cookbook/knapsack.md
- N-Queens: cookbook/n-queens.md
- Diet Problem: cookbook/diet.md
- Nurse Scheduling: cookbook/nurse-scheduling.md
- Bin Packing: cookbook/bin-packing.md
- Cutting Stock: cookbook/cutting-stock.md
- Job Shop: cookbook/job-shop.md
- Shortest Path Grid: cookbook/shortest-path-grid.md
- Max Flow: cookbook/max-flow.md
- Resource Allocation: cookbook/resource-allocation.md
- Assignment: cookbook/assignment.md
- Magic Square: cookbook/magic-square.md
- Portfolio: cookbook/portfolio.md
- Pentomino: cookbook/pentomino.md
- Currency Arbitrage: cookbook/currency-arbitrage.md
- Production Planning: cookbook/production-planning.md
- Graph Coloring: cookbook/graph-coloring.md
- API Reference:
- Overview: api/index.md
- Types: api/types.md
- Utilities: api/utilities.md
- Troubleshooting: troubleshooting.md