aboutsummaryrefslogtreecommitdiffhomepage
path: root/vernac/vernacstate.mli
blob: bcfa49aa38eb1cb5b0e2e8458cd99fbb92b20029 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(************************************************************************)
(*  v      *   The Coq Proof Assistant  /  The Coq Development Team     *)
(* <O___,, *   INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2017     *)
(*   \VV/  **************************************************************)
(*    //   *      This file is distributed under the terms of the       *)
(*         *       GNU Lesser General Public License Version 2.1        *)
(************************************************************************)

type t = {
  system  : States.state;        (* summary + libstack *)
  proof   : Proof_global.state;  (* proof state *)
  shallow : bool                 (* is the state trimmed down (libstack) *)
}

val freeze_interp_state : Summary.marshallable -> t
val unfreeze_interp_state : t -> unit

(* WARNING: Do not use, it will go away in future releases *)
val invalidate_cache : unit -> unit