package lambdapi
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=1066aed2618fd8e6a400c5147dbf55ea977ce8d3fe2e518ac6785c6775a1b8be
sha512=f7f499626aba92e070ae69581299a58525973fdbfd04a160ed3ac89209fb6cbe307b816d0b23e1b75bc83467ce8b4b0530c6f9816eaf58f7a07fde65a450106c
doc/lambdapi.tool/Tool/Tree_graphviz/index.html
Module Tool.Tree_graphviz
Source
Representation of trees as graphviz files.
Graphviz is a graph visualization software. This module handles the conversion from Core.Term.dtree
data structures in the dot
language that can be interpreted by graphviz.
See the chapter doc/options.md#printing-decision-trees
of the documentation for more information.
type dot_term =
| DotDefa
| DotAbst of int
| DotProd of int
| DotCons of Core.Tree_type.TC.t
| DotSuccess
| DotFailure
Printing hint for conversion to graphviz.
to_dot ppf sym
prints a dot graphviz representation of the tree of symbol sym
on ppf
. Each node of the tree embodies a pattern matrix. The label of a node is the column index in the matrix on which the matching is performed to give birth to the child node. The label on the edge between a node and one of its children represents the term matched to generate the next pattern matrix (the one of the child node).