File: buildgraph3.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 (11 lines) | stat: -rw-r--r-- 273 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
digraph G {
	"src:b" [shape=rectangle]
	"src:a" [shape=rectangle]
	binaryA [label="InstSet binaryA"]
	binaryB [label="InstSet binrayB"]
	binaryB -> "src:b";
	binaryA -> "src:a";
	binaryA -> "src:b";
	"src:a" -> binaryB [style=dashed];
	"src:b" -> binaryA [style=dashed];
}