-
Notifications
You must be signed in to change notification settings - Fork 42
/
_quarto.yml
100 lines (91 loc) · 2.34 KB
/
_quarto.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
project:
type: website
website:
title: "matching"
navbar:
left:
- href: docs/tutorials/index.qmd
text: tutorials
- href: docs/how-to/index.qmd
text: how-to guides
- href: docs/discussion/index.qmd
text: discussion
- href: docs/reference/index.qmd
text: reference
right:
- href: docs/citation.qmd
text: citations
- href: docs/contributing.qmd
text: contributing
- href: docs/bibliography.qmd
text: bibliography
- icon: github
href: https://github.com/daffidwilde/matching
- icon: journal-text
href: https://doi.org/10.21105/joss.02169
sidebar:
- title: tutorials
style: docked
contents: docs/tutorials
- title: how-to guides
contents: docs/how-to
- title: discussion
contents: docs/discussion
- title: reference
contents: docs/reference
page-footer:
left: >
Copyright, Henry Wilde 2023.
Powered by [Quarto](https://quarto.org/docs/websites)
and [Diátaxis](https://diataxis.fr).
format:
html:
theme:
light: flatly
dark: darkly
mainfont: Arial
bibliography: docs/assets/bibliography.bib
toc: true
metadata-files:
- docs/_sidebar.yml
quartodoc:
title: API reference
package: matching
dir: docs/reference
sidebar: docs/_sidebar.yml
sections:
- title: Games
desc: Objects for handling game instances.
package: matching.games
contents:
- StableMarriage
- HospitalResident
- StudentAllocation
- StableRoommates
- title: Players
desc: Classes to represent the players who act in games.
package: matching.players
contents:
- Player
- Hospital
- Project
- Supervisor
- title: Algorithms
desc: Modules for the algorithms that solve matching games.
package: matching.algorithms
contents:
- stable_marriage
- hospital_resident
- student_allocation
- stable_roommates
- title: Matchings
desc: Dictionary-like objects for storing matchings.
package: matching.matchings
contents:
- SingleMatching
- MultipleMatching
- title: Auxiliary pieces
desc: Everything else exposed in the public API.
contents:
- exceptions
- base