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 /printing | |
| 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 'printing')
| -rw-r--r-- | printing/ppvernac.ml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/printing/ppvernac.ml b/printing/ppvernac.ml index e52239ba7f..4adb4bc3c1 100644 --- a/printing/ppvernac.ml +++ b/printing/ppvernac.ml @@ -778,6 +778,7 @@ let rec pr_vernac = function let pr_goal_selector = function | SelectNth i -> int i ++ str":" | SelectAll -> str"all" ++ str":" + | SelectAllParallel -> str"par" in (if i = Proof_global.get_default_goal_selector () then mt() else pr_goal_selector i) ++ pr_raw_tactic tac |
