package lambdapi

  1. Overview
  2. Docs
Proof assistant for the λΠ-calculus modulo rewriting

Install

Dune Dependency

Authors

Maintainers

Sources

lambdapi-2.5.0.tbz
sha256=9bc8ae3694dd51bd5742e7aba760bd2878c4b0e5ef9b3d4a7b06f3cd303b611d
sha512=c812c3129b3d85b0c4d7e741d11137dbb4fe2a0aaba3a5968409080b742924ecb506280c19ad83ef6bc910346db96d87780313fa7683c29345edae16ae79c704

doc/lambdapi.tool/Tool/Tree_graphviz/index.html

Module Tool.Tree_graphvizSource

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.

Sourcetype dot_term =
  1. | DotDefa
  2. | DotAbst of int
  3. | DotProd of int
  4. | DotCons of Core.Tree_type.TC.t
  5. | DotSuccess
  6. | DotFailure

Printing hint for conversion to graphviz.

Sourceval to_dot : Format.formatter -> Core.Term.sym -> unit

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).

OCaml

Innovation. Community. Security.