package coq

  1. Overview
  2. Docs
Formal proof management system

Install

Dune Dependency

Authors

Maintainers

Sources

coq-8.14.0.tar.gz
sha256=b1501d686c21836302191ae30f610cca57fb309214c126518ca009363ad2cd3c

doc/coq-core.engine/Proofview_monad/Trace/index.html

Module Proofview_monad.TraceSource

Sourcetype 'a forest = 'a tree list

The intent is that an 'a forest is a list of messages of type 'a. But messages can stand for a list of more precise messages, hence the structure is organised as a tree.

Sourceand 'a tree =
  1. | Seq of 'a * 'a forest
Sourcetype 'a incr

To build a trace incrementally, we use an intermediary data structure on which we can define an S-expression like language (like a simplified xml except the closing tags do not carry a name).

Sourceval to_tree : 'a incr -> 'a forest
Sourceval opn : 'a -> 'a incr -> 'a incr

open a opens a tag with name a.

Sourceval close : 'a incr -> 'a incr

close closes the last open tag. It is the responsibility of the user to close all the tags.

Sourceval leaf : 'a -> 'a incr -> 'a incr

leaf creates an empty tag with name a.

OCaml

Innovation. Community. Security.