Mercurial > hg > camir-ismir2012
annotate toolboxes/graph_visualisation/share/graphviz/graphs/directed/switch.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 G { |
Daniel@0 | 2 graph [center=true rankdir=LR bgcolor="#808080"] |
Daniel@0 | 3 edge [dir=none] |
Daniel@0 | 4 node [width=0.3 height=0.3 label=""] |
Daniel@0 | 5 { node [shape=circle style=invis] |
Daniel@0 | 6 1 2 3 4 5 6 7 8 10 20 30 40 50 60 70 80 |
Daniel@0 | 7 } |
Daniel@0 | 8 { node [shape=circle] |
Daniel@0 | 9 a b c d e f g h i j k l m n o p q r s t u v w x |
Daniel@0 | 10 } |
Daniel@0 | 11 { node [shape=diamond] |
Daniel@0 | 12 A B C D E F G H I J K L M N O P Q R S T U V W X |
Daniel@0 | 13 } |
Daniel@0 | 14 1 -> a -> {A B} [color="#0000ff"] |
Daniel@0 | 15 2 -> b -> {B A} [color="#ff0000"] |
Daniel@0 | 16 3 -> c -> {C D} [color="#ffff00"] |
Daniel@0 | 17 4 -> d -> {D C} [color="#00ff00"] |
Daniel@0 | 18 5 -> e -> {E F} [color="#000000"] |
Daniel@0 | 19 6 -> f -> {F E} [color="#00ffff"] |
Daniel@0 | 20 7 -> g -> {G H} [color="#ffffff"] |
Daniel@0 | 21 8 -> h -> {H G} [color="#ff00ff"] |
Daniel@0 | 22 { edge [color="#ff0000:#0000ff"] |
Daniel@0 | 23 A -> i -> {I K} |
Daniel@0 | 24 B -> j -> {J L} |
Daniel@0 | 25 } |
Daniel@0 | 26 { edge [color="#00ff00:#ffff00"] |
Daniel@0 | 27 C -> k -> {K I} |
Daniel@0 | 28 D -> l -> {L J} |
Daniel@0 | 29 } |
Daniel@0 | 30 { edge [color="#00ffff:#000000"] |
Daniel@0 | 31 E -> m -> {M O} |
Daniel@0 | 32 F -> n -> {N P} |
Daniel@0 | 33 } |
Daniel@0 | 34 { edge [color="#ff00ff:#ffffff"] |
Daniel@0 | 35 G -> o -> {O M} |
Daniel@0 | 36 H -> p -> {P N} |
Daniel@0 | 37 } |
Daniel@0 | 38 { edge [color="#00ff00:#ffff00:#ff0000:#0000ff"] |
Daniel@0 | 39 I -> q -> {Q U} |
Daniel@0 | 40 J -> r -> {R V} |
Daniel@0 | 41 K -> s -> {S W} |
Daniel@0 | 42 L -> t -> {T X} |
Daniel@0 | 43 } |
Daniel@0 | 44 { edge [color="#ff00ff:#ffffff:#00ffff:#000000"] |
Daniel@0 | 45 M -> u -> {U Q} |
Daniel@0 | 46 N -> v -> {V R} |
Daniel@0 | 47 O -> w -> {W S} |
Daniel@0 | 48 P -> x -> {X T} |
Daniel@0 | 49 } |
Daniel@0 | 50 { edge [color="#ff00ff:#ffffff:#00ffff:#000000:#00ff00:#ffff00:#ff0000:#0000ff"] |
Daniel@0 | 51 Q -> 10 |
Daniel@0 | 52 R -> 20 |
Daniel@0 | 53 S -> 30 |
Daniel@0 | 54 T -> 40 |
Daniel@0 | 55 U -> 50 |
Daniel@0 | 56 V -> 60 |
Daniel@0 | 57 W -> 70 |
Daniel@0 | 58 X -> 80 |
Daniel@0 | 59 } |
Daniel@0 | 60 } |