comparison toolboxes/graph_visualisation/share/graphviz/graphs/directed/jcctree.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 "tree" {
2 // The problem disappeared when I removed the "ELEM3 -> ID5;" line!
3 //size="4,5";
4 ordering=out;
5 node [shape=plaintext];
6 SPEC -> DEF2;
7 SPEC -> DEF1;
8 DEF1 -> ID1;
9 DEF1 -> SET1;
10 DEF1 -> SC1;
11 DEF2 -> ID2;
12 DEF2 -> SET2;
13 DEF2 -> SC2;
14 SET1 -> OPEN1;
15 SET1 -> ELEM1;
16 SET1 -> SC3;
17 SET1 -> ELEM2;
18 SET1 -> CLOSE1;
19 ELEM1 -> ID3;
20 SET2 -> OPEN2;
21 SET2 -> ELEM3;
22 SET2 -> CLOSE2;
23 ELEM2 -> ID4;
24 ELEM3 -> ID5;
25 DEF1 [label=DEF];
26 DEF2 [label=DEF];
27 SET1 [label=SET];
28 SC1 [label=";"];
29 SC3 [label=";"];
30 SET2 [label=SET];
31 SC2 [label=";"];
32 OPEN1 [label="{"];
33 OPEN2 [label="{"];
34 CLOSE1 [label="}"];
35 CLOSE2 [label="}"];
36 ELEM1 [label=ELEMENT];
37 ELEM2 [label=ELEMENT];
38 ELEM3 [label=ELEMENT];
39 ID1 [label=cities];
40 ID2 [label=insects];
41 ID3 [label=andover];
42 ID4 [label=boston];
43 ID5 [label=fly];
44 }