Fleche.Memo
module Stats : sig ... end
module Intern : sig ... end
module type S = sig ... end
Flèche memo / cache tables, with some advanced features
module Init :
S
with type input = Coq.State.t * Coq.Workspace.t * Lang.LUri.File.t
and type output = Coq.State.t
Document creation cache
module Interp :
S with type input = Coq.State.t * Coq.Ast.t and type output = Coq.State.t
Vernacular evaluation cache, invariant w.r.t. Coq's Ast locations, results are repaired.
module Require :
S
with type input = Coq.State.t * Coq.Files.t * Coq.Ast.Require.t
and type output = Coq.State.t
Require evaluation cache, also invariant w.r.t. locations inside Coq.Ast.Require.t
module Admit : S with type input = Coq.State.t and type output = Coq.State.t
Admit evaluation cache
module GlobalCacheStats : sig ... end