annotate toolboxes/graph_visualisation/share/graphviz/graphs/directed/clust4.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
Daniel@0 3 subgraph cluster_0 {
Daniel@0 4 style=filled;
Daniel@0 5 color=lightgrey;
Daniel@0 6 node [style=filled,color=white];
Daniel@0 7 a0 -> a1 -> a2 -> a3;
Daniel@0 8 label = "process #1";
Daniel@0 9 }
Daniel@0 10
Daniel@0 11 subgraph cluster_1 {
Daniel@0 12 node [style=filled];
Daniel@0 13 b0 -> b1 -> b2 -> b3;
Daniel@0 14 label = "process #2";
Daniel@0 15 color=blue
Daniel@0 16 }
Daniel@0 17 start -> a0;
Daniel@0 18 start -> b0;
Daniel@0 19 a1 -> b3;
Daniel@0 20 b2 -> a3;
Daniel@0 21 a3 -> a0;
Daniel@0 22 a3 -> end;
Daniel@0 23 b3 -> end;
Daniel@0 24
Daniel@0 25 start [shape=Mdiamond];
Daniel@0 26 end [shape=Msquare];
Daniel@0 27 }