annotate toolboxes/graph_visualisation/share/graphviz/graphs/directed/jcctree.gv @ 0:cc4b1211e677 tip

initial commit to HG from Changeset: 646 (e263d8a21543) added further path and more save "camirversion.m"
author Daniel Wolff
date Fri, 19 Aug 2016 13:07:06 +0200
parents
children
rev   line source
Daniel@0 1 digraph "tree" {
Daniel@0 2 // The problem disappeared when I removed the "ELEM3 -> ID5;" line!
Daniel@0 3 //size="4,5";
Daniel@0 4 ordering=out;
Daniel@0 5 node [shape=plaintext];
Daniel@0 6 SPEC -> DEF2;
Daniel@0 7 SPEC -> DEF1;
Daniel@0 8 DEF1 -> ID1;
Daniel@0 9 DEF1 -> SET1;
Daniel@0 10 DEF1 -> SC1;
Daniel@0 11 DEF2 -> ID2;
Daniel@0 12 DEF2 -> SET2;
Daniel@0 13 DEF2 -> SC2;
Daniel@0 14 SET1 -> OPEN1;
Daniel@0 15 SET1 -> ELEM1;
Daniel@0 16 SET1 -> SC3;
Daniel@0 17 SET1 -> ELEM2;
Daniel@0 18 SET1 -> CLOSE1;
Daniel@0 19 ELEM1 -> ID3;
Daniel@0 20 SET2 -> OPEN2;
Daniel@0 21 SET2 -> ELEM3;
Daniel@0 22 SET2 -> CLOSE2;
Daniel@0 23 ELEM2 -> ID4;
Daniel@0 24 ELEM3 -> ID5;
Daniel@0 25 DEF1 [label=DEF];
Daniel@0 26 DEF2 [label=DEF];
Daniel@0 27 SET1 [label=SET];
Daniel@0 28 SC1 [label=";"];
Daniel@0 29 SC3 [label=";"];
Daniel@0 30 SET2 [label=SET];
Daniel@0 31 SC2 [label=";"];
Daniel@0 32 OPEN1 [label="{"];
Daniel@0 33 OPEN2 [label="{"];
Daniel@0 34 CLOSE1 [label="}"];
Daniel@0 35 CLOSE2 [label="}"];
Daniel@0 36 ELEM1 [label=ELEMENT];
Daniel@0 37 ELEM2 [label=ELEMENT];
Daniel@0 38 ELEM3 [label=ELEMENT];
Daniel@0 39 ID1 [label=cities];
Daniel@0 40 ID2 [label=insects];
Daniel@0 41 ID3 [label=andover];
Daniel@0 42 ID4 [label=boston];
Daniel@0 43 ID5 [label=fly];
Daniel@0 44 }