-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSource.gv
More file actions
12 lines (11 loc) · 1.14 KB
/
Source.gv
File metadata and controls
12 lines (11 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
digraph G {
graph [splines=true];
node [fontname="Arial"];
edge [penwidth=1.5];
"__start__" [label="__start__", shape=ellipse, style=filled, fillcolor=lightblue, width=0.5, height=0.3];"__end__" [label="__end__", shape=ellipse, style=filled, fillcolor=lightblue, width=0.5, height=0.3];"Conductor" [label="Conductor", shape=box, style=filled, fillcolor=lightyellow, width=1.5, height=0.8];"search" [label="search", shape=ellipse, style=filled, fillcolor=lightgreen, width=0.5, height=0.3];"classifier" [label="classifier", shape=ellipse, style=filled, fillcolor=lightgreen, width=0.5, height=0.3];"compose" [label="compose", shape=ellipse, style=filled, fillcolor=lightgreen, width=0.5, height=0.3];"__start__" -> "Conductor";
"Conductor" -> "search" [style=dotted, penwidth=1.5];
"search" -> "Conductor" [style=dotted, penwidth=1.5];
"Conductor" -> "classifier" [style=dotted, penwidth=1.5];
"classifier" -> "Conductor" [style=dotted, penwidth=1.5];
"Conductor" -> "compose" [style=dotted, penwidth=1.5];
"compose" -> "Conductor" [style=dotted, penwidth=1.5];"Conductor" -> "__end__";}