diff options
| author | Enrico Tassi | 2014-07-21 10:03:04 +0200 |
|---|---|---|
| committer | Enrico Tassi | 2014-08-05 18:38:28 +0200 |
| commit | 7dba9d3f3ce62246b9d8562d2818c63ba37b206e (patch) | |
| tree | fbf0e133e160a5f7ff03f8a0b5bb4d0f47b43105 /intf | |
| parent | 4e724634839726aa11534f16e4bfb95cd81232a4 (diff) | |
STM: new "par:" goal selector, like "all:" but in parallel
par: distributes the goals among a number of workers given
by -async-proofs-tac-j (defaults to 2).
Diffstat (limited to 'intf')
| -rw-r--r-- | intf/vernacexpr.mli | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/intf/vernacexpr.mli b/intf/vernacexpr.mli index 1101571e55..ff5b71b91d 100644 --- a/intf/vernacexpr.mli +++ b/intf/vernacexpr.mli @@ -31,6 +31,7 @@ type class_rawexpr = FunClass | SortClass | RefClass of reference or_by_notation type goal_selector = | SelectNth of int | SelectAll + | SelectAllParallel type goal_identifier = string type scope_name = string @@ -447,7 +448,7 @@ type vernac_type = | VtStartProof of vernac_start | VtSideff of vernac_sideff_type | VtQed of vernac_qed_type - | VtProofStep + | VtProofStep of bool (* parallelize *) | VtProofMode of string | VtQuery of vernac_part_of_script * report_with | VtStm of vernac_control * vernac_part_of_script |
