package coq-core

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

Install

Dune Dependency

Authors

Maintainers

Sources

coq-8.19.2.tar.gz
md5=5d1187d5e44ed0163f76fb12dabf012e
sha512=91bc81530fa4f6498961583ad51eac5001f139881788b88e360a866ad8e2a6e2c5bce86d1a580ab4cd4782bf49d48318767df82471ce33ba3ac143e5569ad33c

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.