| Line | |
|---|
| 1 | {{{ |
|---|
| 2 | #!graphviz |
|---|
| 3 | digraph G { |
|---|
| 4 | |
|---|
| 5 | subgraph cluster_0 { |
|---|
| 6 | style=filled; |
|---|
| 7 | color=lightgrey; |
|---|
| 8 | node [style=filled,color=white]; |
|---|
| 9 | a0 -> a1 -> a2 -> a3; |
|---|
| 10 | label = "process #1"; |
|---|
| 11 | } |
|---|
| 12 | |
|---|
| 13 | subgraph cluster_1 { |
|---|
| 14 | node [style=filled]; |
|---|
| 15 | b0 -> b1 -> b2 -> b3; |
|---|
| 16 | label = "process #2"; |
|---|
| 17 | color=blue |
|---|
| 18 | } |
|---|
| 19 | start -> a0; |
|---|
| 20 | start -> b0; |
|---|
| 21 | a1 -> b3; |
|---|
| 22 | b2 -> a3; |
|---|
| 23 | a3 -> a0; |
|---|
| 24 | a3 -> end; |
|---|
| 25 | b3 -> end; |
|---|
| 26 | |
|---|
| 27 | start [shape=Mdiamond]; |
|---|
| 28 | end [shape=Msquare]; |
|---|
| 29 | } |
|---|
| 30 | }}} |
|---|
Note: See
TracBrowser
for help on using the repository browser.