From 208e82769300c888d34fb94266b74a3906125789 Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Wed, 5 Apr 2017 02:53:02 -0400 Subject: Actually add ChangeInAll --- src/Util/ChangeInAll.v | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/Util/ChangeInAll.v (limited to 'src/Util/ChangeInAll.v') diff --git a/src/Util/ChangeInAll.v b/src/Util/ChangeInAll.v new file mode 100644 index 000000000..39a031207 --- /dev/null +++ b/src/Util/ChangeInAll.v @@ -0,0 +1,7 @@ +(** Work around "Cannot create self-referring hypothesis" coming from + [change x with y in *] *) +Ltac change_in_all from to := + change from with to; + repeat match goal with + | [ H : _ |- _ ] => progress change from with to in H + end. -- cgit v1.2.3