diff options
author | Enrico Tassi <Enrico.Tassi@inria.fr> | 2014-09-16 16:57:59 +0200 |
---|---|---|
committer | Enrico Tassi <Enrico.Tassi@inria.fr> | 2014-09-16 17:34:57 +0200 |
commit | 4dc8746cac24ba72a1ec4dfa764a1ae88ce79277 (patch) | |
tree | 2987141c16e3ec03afc1d3b11cb3d7b3334c6580 /lib | |
parent | 26aa224293e88611dcb543e400488013bc8b30b4 (diff) |
Undo prints only if coqtop || emacs
Diffstat (limited to 'lib')
-rw-r--r-- | lib/flags.ml | 2 | ||||
-rw-r--r-- | lib/flags.mli | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/lib/flags.ml b/lib/flags.ml index 2bc217fa3..0356863ab 100644 --- a/lib/flags.ml +++ b/lib/flags.ml @@ -50,6 +50,8 @@ let compilation_mode = ref BuildVo type async_proofs = APoff | APonLazy | APon let async_proofs_mode = ref APoff +type cache = Force +let async_proofs_cache = ref None let async_proofs_n_workers = ref 1 let async_proofs_n_tacworkers = ref 2 let async_proofs_private_flags = ref None diff --git a/lib/flags.mli b/lib/flags.mli index 98f0acb95..f94d80ffc 100644 --- a/lib/flags.mli +++ b/lib/flags.mli @@ -17,6 +17,8 @@ val compilation_mode : compilation_mode ref type async_proofs = APoff | APonLazy | APon val async_proofs_mode : async_proofs ref +type cache = Force +val async_proofs_cache : cache option ref val async_proofs_n_workers : int ref val async_proofs_n_tacworkers : int ref val async_proofs_private_flags : string option ref |