aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/flags.mli
diff options
context:
space:
mode:
authorGravatar Enrico Tassi <Enrico.Tassi@inria.fr>2014-07-23 11:54:36 +0200
committerGravatar Enrico Tassi <Enrico.Tassi@inria.fr>2014-08-05 18:24:50 +0200
commit4e724634839726aa11534f16e4bfb95cd81232a4 (patch)
tree2114ba0a78c4df764d78ad260e30f5fa6854df95 /lib/flags.mli
parent95e97b68744eeb8bf20811c3938d78912eb3e918 (diff)
STM: code restructured to reuse task queue for tactics
Diffstat (limited to 'lib/flags.mli')
-rw-r--r--lib/flags.mli4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/flags.mli b/lib/flags.mli
index 7f2b749b7..db1d8bcc4 100644
--- a/lib/flags.mli
+++ b/lib/flags.mli
@@ -15,14 +15,16 @@ val batch_mode : bool ref
type compilation_mode = BuildVo | BuildVi | Vi2Vo
val compilation_mode : compilation_mode ref
-type async_proofs = APoff | APonLazy | APonParallel of int
+type async_proofs = APoff | APonLazy | APon
val async_proofs_mode : async_proofs ref
val async_proofs_n_workers : int ref
val async_proofs_private_flags : string option ref
val async_proofs_is_worker : unit -> bool
+val async_proofs_is_master : unit -> bool
val async_proofs_always_delegate : bool ref
val async_proofs_never_reopen_branch : bool ref
val async_proofs_flags_for_workers : string list ref
+val async_proofs_worker_id : string ref
val debug : bool ref