From: Emden R. Gansner Date: Sat, 15 Mar 2014 21:14:18 +0000 (-0400) Subject: Add missing rtest graph X-Git-Tag: 2.38.0~23^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3bb661e7f338f27d0df2c6295e20e9fe1121555a;p=graphviz Add missing rtest graph --- diff --git a/rtest/graphs/clusters.gv b/rtest/graphs/clusters.gv new file mode 100644 index 000000000..41e31de1c --- /dev/null +++ b/rtest/graphs/clusters.gv @@ -0,0 +1,28 @@ +digraph G { + + subgraph cluster_0 { + style=filled; + color=lightgrey; + node [style=filled,color=white]; + a0 -> a1 -> a2 -> a3; + label = "process #1"; + } + + subgraph cluster_1 { + node [style=filled]; + b0 -> b1 -> b2 -> b3; + label = "process #2"; + color=blue + } + start -> a0; + start -> b0; + a1 -> b3; + b2 -> a3; + a3 -> a0; + a3 -> end; + b3 -> end; + + start [shape=Mdiamond]; + end [shape=Msquare]; +} +