File: cluster.dot

package info (click to toggle)
golang-github-emicklei-dot 1.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 300 kB
  • sloc: makefile: 9
file content (22 lines) | stat: -rwxr-xr-x 263 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
digraph  {
	subgraph cluster_s2 {
		label="Cluster A";
		n3[label="one"];
		n4[label="two"];
		
	}
	subgraph cluster_s5 {
		label="Cluster B";
		n7[label="four"];
		n6[label="three"];
		
	}
	
	n1[label="Outside"];
	n1->n7;
	n7->n3;
	n3->n4;
	n6->n1;
	n4->n6;
	
}