File: hierarchy.dot

package info (click to toggle)
guile-2.0 2.0.13%2B1-4
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 27,012 kB
  • ctags: 24,674
  • sloc: ansic: 133,696; lisp: 67,499; sh: 4,762; makefile: 2,031; perl: 243; awk: 37
file content (21 lines) | stat: -rw-r--r-- 433 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Process this file with graphviz to produce hierarchy.[png,eps]
 * e.g. dot hierarchy.dot -Tpng > hierarchy.png
 */
digraph hierarchy {
	graph [rankdir="BT"];
	node  [shape="none"];
	F -> D
	F -> E
	D -> A
	E -> A
	D -> B
	E -> C
	A -> "<object>"
	B -> "<object>"
	C -> "<object>"
	"<object>"    -> "<top>"
	"<pair>"      -> "<top>"
	"<procedure>" -> "<top>"
	"<integer>"   -> "<real>" -> "<complex>" -> "<number>" -> "<top>"
}