package coq-core

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

Install

Dune Dependency

Authors

Maintainers

Sources

coq-8.17.1.tar.gz
sha512=9a35311acec2a806730b94ac7dceabc88837f235c52a14c026827d9b89433bd7fa9555a9fc6829aa49edfedb24c8bbaf1411ebf463b74a50aeb17cba47745b6b

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.