-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.penguingraphs.jazzy.json
120 lines (120 loc) · 3.83 KB
/
.penguingraphs.jazzy.json
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
{
"author": "Brennan Saeta <[email protected]>",
"author_url": "https://github.com/saeta",
"module": "PenguinGraphs",
"github_url": "https://github.com/saeta/penguin",
"github_file_prefix": "https://github.com/saeta/penguin/tree/main",
"min_acl": "public",
"readme": "Sources/PenguinGraphs/README.md",
"swift_build_tool": "spm",
"theme": "fullwidth",
"output": "docs/graphs",
"custom_categories": [{
"name": "Graph Protocols & Algorithms",
"children": [
"GraphProtocol",
"IncidenceGraph",
"SearchDefaultsGraph",
"BidirectionalGraph",
"VertexListGraph",
"EdgeListGraph",
"MutableGraph",
"PropertyGraph",
"MutablePropertyGraph"
]
}, {
"name": "Adjacency Lists",
"children": [
"DirectedAdjacencyList",
"BidirectionalAdjacencyList",
"UndirectedAdjacencyList",
"SimpleAdjacencyList"
]
}, {
"name": "Graph Algorithm State",
"children": [
"VertexColor",
"BFSEvent",
"DFSEvent",
"DijkstraSearchEvent",
"GraphDistanceMeasure",
"TablePredecessorRecorder",
"DictionaryPredecessorRecorder",
"GraphErrors"
]
}, {
"name": "Parallel Graph Algorithms",
"children": [
"ParallelGraph",
"MergeableMessage",
"MailboxProtocol",
"MailboxesProtocol",
"PerThreadMailboxes",
"SequentialMailboxes",
"ParallelGraphAlgorithmContext",
"DistanceVertex",
"ReachableVertex",
"DistanceSearchMessage",
"SIMDLabelBundle",
"IncomingEdgeWeightSumMessage",
"LabeledVertex",
"LabelBundle"
]
}, {
"name": "Graph Property Maps",
"children": [
"PropertyMap",
"ExternalPropertyMap",
"ParallelCapablePropertyMap",
"TablePropertyMap",
"DictionaryPropertyMap",
"ClosurePropertyMap",
"TransformingPropertyMap",
"InternalVertexPropertyMap",
"InternalEdgePropertyMap"
]
}, {
"name": "Other graph types",
"children": [
"InfiniteGrid",
"CompleteInfiniteGrid",
"CompleteManhattenGrid",
"RectangularBoundedGrid"
]
}, {
"name": "Adjacency List Implementation Internals",
"children": [
"AdjacencyListProtocol",
"DirectedAdjacencyListProtocol",
"UndirectedAdjacencyListProtocol",
"_AdjacencyListPerEdge",
"_AdjacencyListPerEdgeBidirectional",
"_AdjacencyListPerVertex",
"_AdjacencyListPerVertexBidirectional",
"_AdjacencyListPerVertexUndirected",
"_AdjacencyList_BidirectionalPerEdge",
"_AdjacencyList_BidirectionalPerVertex",
"_AdjacencyList_DirectedEdgeCollection",
"_AdjacencyList_DirectedEdgeId",
"_AdjacencyList_DirectedPerEdge",
"_AdjacencyList_DirectedPerVertex",
"_AdjacencyList_DirectedVertexEdgeCollection",
"_AdjacencyList_UndirectedEdgeCollection",
"_AdjacencyList_UndirectedEdgeId",
"_AdjacencyList_UndirectedPerVertex",
"_AdjacencyList_UndirectedVertexEdgeCollection",
"_DirectedAdjacencyList_ParallelProjection"
]
}, {
"name": "Infinite Grid Support",
"children": [
"Point2",
"GridDirection",
"GridEdge",
"GridFilter",
"CompleteGridFilter",
"ManhattenGridFilter",
"RectangularGridFilter"
]
}]
}