aboutsummaryrefslogtreecommitdiff
path: root/src/Util/Tactics/ChangeInAll.v
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2017-07-08 15:59:53 -0400
committerGravatar Jason Gross <jgross@mit.edu>2017-07-08 16:01:19 -0400
commit5aa6b0a6b2ac0561125716710662adab6ad6f333 (patch)
treedcd50d5c9e51bca63566e10a48a824f0e197e42f /src/Util/Tactics/ChangeInAll.v
parentc13b59e4e416b308f709bf5e901f29580fb04f5a (diff)
Add UnfoldArg
Diffstat (limited to 'src/Util/Tactics/ChangeInAll.v')
-rw-r--r--src/Util/Tactics/ChangeInAll.v4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Util/Tactics/ChangeInAll.v b/src/Util/Tactics/ChangeInAll.v
index 39a031207..c18055962 100644
--- a/src/Util/Tactics/ChangeInAll.v
+++ b/src/Util/Tactics/ChangeInAll.v
@@ -5,3 +5,7 @@ Ltac change_in_all from to :=
repeat match goal with
| [ H : _ |- _ ] => progress change from with to in H
end.
+
+Ltac change_with_compute_in_all c :=
+ let c' := (eval compute in c) in
+ change c with c' in *.