Skip to content

Commit ab4f886

Browse files
committed
upddoc(modeps): actually show modifers rdeps
1 parent 5261422 commit ab4f886

File tree

2 files changed

+128
-106
lines changed

2 files changed

+128
-106
lines changed

docs/GraphtikModuleDependencies.dot

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,23 @@ digraph {
99

1010
subgraph cluster_core {
1111
label="core modules";
12+
tooltip="most modules depend on them";
1213
"base.py" [shape=component
1314
tooltip="(implicit) everything imports this module"
1415
fillcolor=AliceBlue
1516
URL="reference.html#module-graphtik.base"];
1617
"config.py" [shape=component tooltip="(public)"
1718
fillcolor=wheat
1819
URL="reference.html#module-graphtik.config"];
19-
"modifiers.py" [shape=component
20-
tooltip="(public) almost everything imports this module"
21-
fillcolor=wheat
22-
URL="reference.html#module-graphtik.modifiers"];
2320
}
21+
"modifiers.py" [shape=component
22+
tooltip="(public) almost everything imports this module"
23+
fillcolor=wheat
24+
URL="reference.html#module-graphtik.modifiers"];
2425
"composition.py" [shape=component
2526
tooltip="(public)"
2627
fillcolor=wheat
27-
URL="reference.html#module-graphtik.op"];
28+
URL="reference.html#module-graphtik.composition"];
2829
"network.py" [shape=component
2930
tooltip="(private)"
3031
fillcolor=AliceBlue
@@ -42,12 +43,12 @@ digraph {
4243
fillcolor=Aquamarine
4344
URL="reference.html#module-graphtik.sphinxext"];
4445

45-
{"network.py", "execution.py", "plot.py", "sphinxext/"} -> "composition.py" [
46-
tooltip="(import-time)"];
46+
{"composition.py", "network.py", "execution.py", "plot.py"} -> "modifiers.py" [tooltip="(import-time)"];
47+
{"network.py", "execution.py", "plot.py", "sphinxext/"} -> "composition.py" [tooltip="(import-time)"];
4748
"base.py" -> "plot.py" [tooltip="(run-time)" style=dashed];
4849
"execution.py" -> "network.py" [tooltip="(import-time)"];
4950
"network.py" -> "execution.py" [tooltip="(run-time)" style=dashed];
5051
"composition.py" -> "network.py" [tooltip="(run-time)" style=dashed];
51-
"plot.py" -> {"network.py", "execution.py"} [tooltip="(run-time)" style=dashed];
52-
"sphinxext/" -> {"plot.py", "execution.py"} [tooltip="(import-time)"];
52+
"plot.py" -> "execution.py" [tooltip="(run-time) " style=dashed];
53+
"sphinxext/" -> "plot.py" [tooltip="(import-time)"];
5354
}

0 commit comments

Comments
 (0)