Skip to content

Commit 7ca024a

Browse files
committed
doc(modeps); update modules diagram with composition.py
1 parent 62ffe17 commit 7ca024a

File tree

2 files changed

+103
-137
lines changed

2 files changed

+103
-137
lines changed

docs/GraphtikModuleDependencies.dot

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ digraph {
2121
fillcolor=wheat
2222
URL="reference.html#module-graphtik.modifiers"];
2323
}
24-
"op.py" [shape=component
24+
"composition.py" [shape=component
2525
tooltip="(public)"
2626
fillcolor=wheat
2727
URL="reference.html#module-graphtik.op"];
@@ -33,10 +33,6 @@ digraph {
3333
tooltip="(private)"
3434
fillcolor=AliceBlue
3535
URL="reference.html#module-graphtik.execution"];
36-
"pipeline.py" [shape=component
37-
tooltip="(public)"
38-
fillcolor=wheat
39-
URL="reference.html#module-graphtik.pipeline"];
4036
"plot.py" [shape=component
4137
tooltip="(extra)"
4238
fillcolor=Aquamarine
@@ -46,13 +42,12 @@ digraph {
4642
fillcolor=Aquamarine
4743
URL="reference.html#module-graphtik.sphinxext"];
4844

49-
{"pipeline.py", "network.py", "execution.py", "plot.py", "sphinxext/"} -> "op.py" [
45+
{"network.py", "execution.py", "plot.py", "sphinxext/"} -> "composition.py" [
5046
tooltip="(import-time)"];
5147
"base.py" -> "plot.py" [tooltip="(run-time)" style=dashed];
5248
"execution.py" -> "network.py" [tooltip="(import-time)"];
5349
"network.py" -> "execution.py" [tooltip="(run-time)" style=dashed];
54-
"pipeline.py" -> "network.py" [tooltip="(run-time)" style=dashed];
55-
"op.py" -> "pipeline.py" [tooltip="(run-time)" style=dashed];
50+
"composition.py" -> "network.py" [tooltip="(run-time)" style=dashed];
5651
"plot.py" -> {"network.py", "execution.py"} [tooltip="(run-time)" style=dashed];
5752
"sphinxext/" -> {"plot.py", "execution.py"} [tooltip="(import-time)"];
5853
}

0 commit comments

Comments
 (0)