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

« back to all changes in this revision

Viewing changes to graphs/undirected/ER.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
graph ER {
 
2
        node [shape=box]; course; institute; student;
 
3
        node [shape=ellipse]; {node [label="name"] name0; name1; name2;}
 
4
                code; grade; number;
 
5
        node [shape=diamond,style=filled,color=lightgrey]; "C-I"; "S-C"; "S-I";
 
6
 
 
7
        name0 -- course;
 
8
        code -- course;
 
9
        course -- "C-I" [label="n",len=1.00];
 
10
        "C-I" -- institute [label="1",len=1.00];
 
11
        institute -- name1;
 
12
        institute -- "S-I" [label="1",len=1.00];
 
13
        "S-I" -- student [label="n",len=1.00];
 
14
        student -- grade;
 
15
        student -- name2;
 
16
        student -- number;
 
17
        student -- "S-C" [label="m",len=1.00];
 
18
        "S-C" -- course [label="n",len=1.00];
 
19
 
 
20
        label = "\n\nEntity Relation Diagram\ndrawn by NEATO";
 
21
        fontsize=20;
 
22
}