-
Notifications
You must be signed in to change notification settings - Fork 4
/
depend-colors.gv
73 lines (73 loc) · 1.31 KB
/
depend-colors.gv
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
digraph dependencies {
subgraph { # preliminary infrastructure
node [style=filled; color="yellow"];
"edone";
"bounded";
"preliminaries";
"finmap_plus";
"set_tac";
"bij";
"finite_quotient";
"equiv";
"setoid_bigop";
"partition";
}
subgraph { # general purpose graph lib
node [style=filled; color="orange"];
"digraph";
"sgraph";
"helly";
"treewidth";
"minor";
"connectivity";
"excluded";
"checkpoint";
"dom";
"coloring";
"wpgt";
}
subgraph { # 2p algebra of multigraphs (JAR19 generalised in CPP20)
node [style=filled; color="magenta3"];
"ptt";
"mgraph";
"mgraph2";
}
subgraph { # 2p algebra of multigraphs, extraction (JAR19)
node [style=filled; color="red"];
"skeleton";
"mgraph2_tw2";
"cp_minor";
"extraction_def";
"extraction_iso";
"extraction_top";
}
subgraph { # 2pdom soundness and completeness (CPP20)
node [style=filled; color="blueviolet"];
"structures";
"pttdom";
"rewriting";
"reduction";
"open_confluence";
"transfer";
"completeness";
}
subgraph { # Wagner's theorem (ITP21)
node [style=filled; color="green"];
"hmap_ops";
"arc";
"hcycle";
"smerge";
"embedding";
"K4plane";
"wagner";
}
subgraph {
rank="same";
"edone";
"preliminaries";
}
subgraph {
rank="same";
"finmap_plus";
"finite_quotient";
}