package coq

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Hooks allow users of the API to perform arbitrary actions at proof/definition saving time. For example, to register a constant as a Coercion, perform some cleanup, update the search database, etc...

type t = {
  1. uctx : UState.t;
    (*

    ustate: universe constraints obtained when the term was closed

    *)
  2. obls : (Names.Id.t * Constr.t) list;
    (*

    (n1,t1),...(nm,tm): association list between obligation name and the corresponding defined term (might be a constant, but also an arbitrary term in the Expand case of obligations)

    *)
  3. scope : Locality.definition_scope;
    (*

    scope: Locality of the original declaration

    *)
  4. dref : Names.GlobRef.t;
    (*

    dref: identifier of the original declaration

    *)
}