diff options
author | Enrico Tassi <Enrico.Tassi@inria.fr> | 2017-01-20 13:51:37 +0100 |
---|---|---|
committer | Enrico Tassi <Enrico.Tassi@inria.fr> | 2017-01-20 14:14:24 +0100 |
commit | 1d4c34c79624fb81e64dfed8874b2fc9fa66c070 (patch) | |
tree | 26532d59e4e304037d5bdee61f2180da4614ae57 /ltac | |
parent | a9b76df171ceea443885bb4be919ea586a82beee (diff) |
Process Next Obligation proofs in parallel (fix #5314)
Diffstat (limited to 'ltac')
-rw-r--r-- | ltac/g_obligations.ml4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ltac/g_obligations.ml4 b/ltac/g_obligations.ml4 index 987b9d538..2ae183e6e 100644 --- a/ltac/g_obligations.ml4 +++ b/ltac/g_obligations.ml4 @@ -66,7 +66,7 @@ GEXTEND Gram open Obligations -let classify_obbl _ = Vernacexpr.(VtStartProof ("Classic",Doesn'tGuaranteeOpacity,[]), VtLater) +let classify_obbl _ = Vernacexpr.(VtStartProof ("Classic",GuaranteesOpacity,[]), VtLater) VERNAC COMMAND EXTEND Obligations CLASSIFIED BY classify_obbl | [ "Obligation" integer(num) "of" ident(name) ":" lglob(t) withtac(tac) ] -> |