Mercurial > hg > camir-aes2014
annotate toolboxes/graph_visualisation/share/graphviz/graphs/directed/try.gv @ 0:e9a9cd732c1e tip
first hg version after svn
author | wolffd |
---|---|
date | Tue, 10 Feb 2015 15:05:51 +0000 |
parents | |
children |
rev | line source |
---|---|
wolffd@0 | 1 digraph G { |
wolffd@0 | 2 subgraph cluster_small { |
wolffd@0 | 3 a -> b; |
wolffd@0 | 4 label=small; |
wolffd@0 | 5 } |
wolffd@0 | 6 |
wolffd@0 | 7 subgraph cluster_big { |
wolffd@0 | 8 p -> q -> r -> s -> t; |
wolffd@0 | 9 label=big; |
wolffd@0 | 10 t -> p; |
wolffd@0 | 11 } |
wolffd@0 | 12 |
wolffd@0 | 13 t -> a; |
wolffd@0 | 14 b -> q; |
wolffd@0 | 15 } |