2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-30 20:02:12 +00:00
Files
graph/example/graphviz_test.dot
Jeremy Siek e2cda00cd7 graphviz changes
[SVN r9174]
2001-02-12 20:49:42 +00:00

41 lines
734 B
Plaintext

digraph G {
subgraph cluster0 { //subgraph<Graph>
node [style=filled color=white];
style = filled;
color = lightgrey;
subgraph inner { //subgraph<Graph> or subgraph of subgraph
node [color = green];
a1 -> a2 -> a3
};
a0 -> subgraph inner;
label = "process #1";
}
subgraph cluster1 {
node [style=filled];
b0 -> b1 -> b2 -> b3;
label = "process #2";
color = blue
b1 -> subgraph inner[style=dotted]; //this is odd, but it is allowed
}
subgraph cluster1 -> subgraph cluster0 [style=dotted]
start -> subgraph inner[style=dotted];
start -> a0;
start -> b0;
a1 -> b3;
b2 -> a3;
a3 -> end;
b3 -> end;
start [shape=Mdiamond];
end [shape=Msquare];
}