comparison toolboxes/graph_visualisation/share/graphviz/graphs/undirected/ER.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 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 }