package coq-core

  1. Overview
  2. Docs
The Coq Proof Assistant -- Core Binaries and Tools

Install

Dune Dependency

Authors

Maintainers

Sources

coq-8.19.0.tar.gz
md5=64b49dbc3205477bd7517642c0b9cbb6
sha512=02fb5b4fb575af79e092492cbec6dc0d15a1d74a07f827f657a72d4e6066532630e5a6d15be4acdb73314bd40b9a321f9ea0584e0ccfe51fd3a56353bd30db9b

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.