Log in | Back to darenet.org

Graph

Line 3: Line 3:
<graphviz>
<graphviz>
digraph G {
digraph G {
-
size ="4,4";
+
size ="20,20";
-
main [shape=box]; /* this is a comment */
+
"Executive Board" [shape=box]; /* this is a comment */
-
main -> parse [weight=8];
+
"Executive Board" -> parse [weight=8];
parse -> execute;
parse -> execute;
-
main -> init [style=dotted];
+
"Executive Board" -> init [style=dotted];
-
main -> cleanup;
+
"Executive Board" -> cleanup;
execute -> { make_string; printf}
execute -> { make_string; printf}
init -> make_string;
init -> make_string;
edge [color=red]; // so is this
edge [color=red]; // so is this
-
main -> printf [style=bold,label="100 times"];
+
"Executive Board" -> printf [style=bold,label="100 times"];
make_string [label="make a\nstring"];
make_string [label="make a\nstring"];
node [shape=box,style=filled,color=".7 .3 1.0"];
node [shape=box,style=filled,color=".7 .3 1.0"];

Revision as of 16:36, 12 March 2009

Graphviz Tests