diff options
author | Greg Benison <gbenison@gmail.com> | 2011-12-24 11:27:12 -0800 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2013-01-15 19:17:55 +0100 |
commit | 5156f4d7454b21ae287c1707e8fa12d2c67ba2b0 (patch) | |
tree | 9cd98245e20f1a4e09c37ed7ff654ab7ac8295c1 /doc/ref/hierarchy.dot | |
parent | e211d69d9dcb057d3c49c1d94c02894ddd19a215 (diff) | |
download | guile-5156f4d7454b21ae287c1707e8fa12d2c67ba2b0.tar.gz |
doc/ref/hierarchy.png: conform to hierarchy.txt and manual
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.
Diffstat (limited to 'doc/ref/hierarchy.dot')
-rw-r--r-- | doc/ref/hierarchy.dot | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/ref/hierarchy.dot b/doc/ref/hierarchy.dot new file mode 100644 index 000000000..f0d9daf8e --- /dev/null +++ b/doc/ref/hierarchy.dot @@ -0,0 +1,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>" +} |