aboutsummaryrefslogtreecommitdiff
path: root/src/Util/Tactics
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2017-06-11 18:12:27 -0400
committerGravatar Jason Gross <jgross@mit.edu>2017-06-11 18:12:27 -0400
commit1d03974139f5cbba67f163fe5f01b156b0d3f5ae (patch)
tree95196bcb41c4b1836eaf1186dd837395c40cb0d5 /src/Util/Tactics
parent9b6d577171419a8478f6cb1649020e7237a962f7 (diff)
Add clearbody_all
Diffstat (limited to 'src/Util/Tactics')
-rw-r--r--src/Util/Tactics/ClearbodyAll.v4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Util/Tactics/ClearbodyAll.v b/src/Util/Tactics/ClearbodyAll.v
new file mode 100644
index 000000000..29a5d288c
--- /dev/null
+++ b/src/Util/Tactics/ClearbodyAll.v
@@ -0,0 +1,4 @@
+Ltac clearbody_all :=
+ repeat match goal with
+ | [ H := _ |- _ ] => clearbody H
+ end.