Skip to content

Commit d13843f

Browse files
authored
add measure theory to dependency graph (#1728)
1 parent 33b3ec6 commit d13843f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

etc/builddoc_dependency_dot.pl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
print " subgraph cluster_analysis { label=\"Analysis\" }\n";
88
print " subgraph cluster_topology { label=\"Topology\" }\n";
99
print " subgraph cluster_normedtype { label=\"NormedType\" }\n";
10+
print " subgraph cluster_measure { label=\"Measure\" }\n";
1011
print " subgraph cluster_lebesgue_integral { label=\"Lebesgue_integral\" }\n";
1112
while (<>) {
1213
if (m/([^\s]*)\.vo.*:(.*)/) {
@@ -26,6 +27,9 @@
2627
}elsif ($path =~ m/theories\/lebesgue_integral_theory/) {
2728
$url="mathcomp.analysis.lebesgue_integral_theory.$src.html";
2829
print "subgraph cluster_lebesgue_integral { \"$path\/$src\"[label=\"$src\",URL=\"$url\",fillcolor=10,fontcolor=white]}";
30+
}elsif ($path =~ m/theories\/measure_theory/) {
31+
$url="mathcomp.analysis.measure_theory.$src.html";
32+
print "subgraph cluster_measure { \"$path\/$src\"[label=\"$src\",URL=\"$url\",fillcolor=11]}";
2933
}elsif ($path =~ m/theories/) {
3034
$url="mathcomp.analysis.$src.html";
3135
print "subgraph cluster_analysis { \"$path\/$src\"[label=\"$src\",URL=\"$url\",fillcolor=5]}";

0 commit comments

Comments
 (0)