mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 11:50:28 +02:00
hierarchy.png (and .pdf, .eps) were changed to add one node to the graph, getting them in sync with hierarchy.txt (and the GOOPS section of the manual). Also added hierarchy.dot, a file to generate said figure using graphviz.
21 lines
433 B
Text
21 lines
433 B
Text
/*
|
|
* 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>"
|
|
}
|