Skip to content

Commit 292f715

Browse files
committed
fix(doc) update module names in API diagram
1 parent 85e5701 commit 292f715

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docs/source/GraphtikModuleDependencies.dot

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ digraph {
3838
tooltip="(public)"
3939
fillcolor=wheat
4040
URL="../reference.html#module-graphtik.pipeline"];
41-
"op.py" [shape=component
41+
"fnop.py" [shape=component
4242
tooltip="(public)"
4343
fillcolor=wheat
44-
URL="../reference.html#module-graphtik.op"];
44+
URL="../reference.html#module-graphtik.fnop"];
4545

46-
subgraph cluster_network {
46+
subgraph cluster_planning {
4747
label="core modules";
4848
tooltip="related to graph solution";
4949
URL="arch.html#term-execution";
@@ -52,23 +52,23 @@ digraph {
5252
tooltip="(private)"
5353
fillcolor=AliceBlue
5454
URL="../reference.html#module-graphtik.execution"];
55-
"network.py" [shape=component
55+
"planning.py" [shape=component
5656
tooltip="(private)"
5757
fillcolor=AliceBlue
58-
URL="../reference.html#module-graphtik.network"];
58+
URL="../reference.html#module-graphtik.planning"];
5959
}
6060

61-
{"op.py", "network.py"} -> "base.py" [tooltip="(import-time)"
61+
{"fnop.py", "planning.py"} -> "base.py" [tooltip="(import-time)"
6262
headport=n tailport=s];
6363
"execution.py" -> "base.py" [tooltip="(import-time)"
6464
headport=n tailport=se];
6565
{"pipeline.py", "plot.py"} -> "base.py" [tooltip="(import-time)"
6666
headport=n tailport=sw];
6767
"base.py" -> "plot.py" [tooltip="(run-time)" style=dashed headport=s];
68-
"execution.py" -> "network.py" [tooltip="(import-time)"];
69-
"network.py" -> "execution.py" [tooltip="(run-time)" style=dashed];
70-
"pipeline.py" -> "network.py" [tooltip="(run-time)" style=dashed];
71-
"op.py" -> "pipeline.py" [style=dashed
68+
"execution.py" -> "planning.py" [tooltip="(import-time)"];
69+
"planning.py" -> "execution.py" [tooltip="(run-time)" style=dashed];
70+
"pipeline.py" -> "planning.py" [tooltip="(run-time)" style=dashed];
71+
"fnop.py" -> "pipeline.py" [style=dashed
7272
tooltip="(run-time) just for plotting"];
7373
"sphinxext/" -> "plot.py" [tooltip="(import-time)" headport=n tailport=s];
7474
}

0 commit comments

Comments
 (0)