Skip to content

Commit d41a2e4

Browse files
authored
add probabilty theory to perl script (#1874)
1 parent 83fd5c0 commit d41a2e4

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

etc/builddoc_dependency_dot.pl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
print " subgraph cluster_normedtype { label=\"NormedType\" }\n";
1010
print " subgraph cluster_measure { label=\"Measure\" }\n";
1111
print " subgraph cluster_lebesgue_integral { label=\"Lebesgue_integral\" }\n";
12+
print " subgraph cluster_probability { label=\"Probability\" }\n";
1213
while (<>) {
1314
if (m/([^\s]*)\.vo.*:(.*)/) {
1415
$dests = $2 ;
@@ -30,6 +31,9 @@
3031
}elsif ($path =~ m/theories\/measure_theory/) {
3132
$url="mathcomp.analysis.measure_theory.$src.html";
3233
print "subgraph cluster_measure { \"$path\/$src\"[label=\"$src\",URL=\"$url\",fillcolor=11]}";
34+
}elsif ($path =~ m/theories\/probability_theory/) {
35+
$url="mathcomp.analysis.probability_theory.$src.html";
36+
print "subgraph cluster_probability { \"$path\/$src\"[label=\"$src\",URL=\"$url\",fillcolor=12]}";
3337
}elsif ($path =~ m/theories/) {
3438
$url="mathcomp.analysis.$src.html";
3539
print "subgraph cluster_analysis { \"$path\/$src\"[label=\"$src\",URL=\"$url\",fillcolor=5]}";

0 commit comments

Comments
 (0)