OCAMLDOT(1) | General Commands Manual | OCAMLDOT(1) |
ocamldot - generate dependency graphs of ocaml programs
ocamldot [options] <dependency-file>
This manual page documents briefly the ocamldot command.
ocamldot generates program dependency graphs for ocaml programs. The dependency graph output by ocamldot can be rendered by a separate program, dot.
Ocamldot is designed to process the output of ocamldep. A typical use would be
ocamldep *.ml | ocamldot > dep.dot
or
ocamldep *.ml > .depend
ocamldot .depend > dep.dot
The transitive kernel of a dag is the smallest subset of the dag whose transitive closure is the same as the transitive closure of the dag. For example, the kernel of A->B, A->C, B->C is just the two edges A->B, B->C.
http://www.research.att.com/~trevor/ocamldot.
Trevor Jim <trevor@research.att.com>