comparison toolboxes/graph_visualisation/share/graphviz/graphs/directed/clust4.gv @ 0:e9a9cd732c1e tip

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e9a9cd732c1e
1 digraph G {
2
3 subgraph cluster_0 {
4 style=filled;
5 color=lightgrey;
6 node [style=filled,color=white];
7 a0 -> a1 -> a2 -> a3;
8 label = "process #1";
9 }
10
11 subgraph cluster_1 {
12 node [style=filled];
13 b0 -> b1 -> b2 -> b3;
14 label = "process #2";
15 color=blue
16 }
17 start -> a0;
18 start -> b0;
19 a1 -> b3;
20 b2 -> a3;
21 a3 -> a0;
22 a3 -> end;
23 b3 -> end;
24
25 start [shape=Mdiamond];
26 end [shape=Msquare];
27 }