~ubuntu-branches/ubuntu/lucid/graphviz/lucid-security

« back to all changes in this revision

Viewing changes to graphs/directed/jcctree.dot

  • Committer: Bazaar Package Importer
  • Author(s): Stephen M Moraco
  • Date: 2002-02-05 18:52:12 UTC
  • Revision ID: james.westby@ubuntu.com-20020205185212-8i04c70te00rc40y
Tags: upstream-1.7.16
ImportĀ upstreamĀ versionĀ 1.7.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
}