package coq

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Parser : sig ... end
module System : sig ... end

System State

module LemmaStack : sig ... end
type t = {
  1. parsing : Parser.t;
    (*

    parsing state parsing state may not behave 100% functionally yet, beware

    *)
  2. system : System.t;
    (*

    summary + libstack

    *)
  3. lemmas : LemmaStack.t option;
    (*

    proofs of lemmas currently opened

    *)
  4. program : Declare.OblState.t NeList.t;
    (*

    program mode table. One per open module/section including the toplevel module.

    *)
  5. opaques : Opaques.Summary.t;
    (*

    qed-terminated proofs

    *)
  6. shallow : bool;
    (*

    is the state trimmed down (libstack)

    *)
}
val freeze_interp_state : marshallable:bool -> t
val unfreeze_interp_state : t -> unit
val invalidate_cache : unit -> unit
module Stm : sig ... end

STM-specific state handling

module Declare : sig ... end