File: buildgraph2.dot

package info (click to toggle)
botch 0.24-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,084,624 kB
  • sloc: xml: 11,924,892; ml: 4,489; python: 3,890; sh: 1,268; makefile: 334
file content (18 lines) | stat: -rw-r--r-- 412 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
digraph G {
	"src:b" [shape=rectangle]
	"src:a" [shape=rectangle]
	subgraph cluster_a {
		label = "InstSet binaryA";
		binaryB1 [label="binaryB"];
		binaryA -> binaryB1 [style=dotted];
	}
	subgraph cluster_b {
		label = "InstSet binaryB";
		binaryB2 [label="binaryB"];
	}
	binaryB2 -> "src:b";
	binaryB1 -> "src:b";
	binaryA -> "src:a";
	"src:a" -> binaryB2 [style=dashed];
	"src:b" -> binaryA [style=dashed];
}