aboutsummaryrefslogtreecommitdiff
path: root/src/Util/Tactics/GlobalTacticals.v
diff options
context:
space:
mode:
Diffstat (limited to 'src/Util/Tactics/GlobalTacticals.v')
-rw-r--r--src/Util/Tactics/GlobalTacticals.v8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Util/Tactics/GlobalTacticals.v b/src/Util/Tactics/GlobalTacticals.v
new file mode 100644
index 000000000..400f0c367
--- /dev/null
+++ b/src/Util/Tactics/GlobalTacticals.v
@@ -0,0 +1,8 @@
+Ltac gprogress tac :=
+ [ > progress tac | tac.. ]
+ + [ > | gprogress tac.. ].
+Tactic Notation "gprogress" tactic3(tac) := gprogress tac.
+Ltac gtry tac := tac + idtac.
+Tactic Notation "gtry" tactic3(tac) := gtry tac.
+Ltac grepeat tac := gtry (gprogress tac; grepeat tac).
+Tactic Notation "grepeat" tactic3(tac) := grepeat tac.