Skip to content
Snippets Groups Projects
Commit 3967e715 authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Variant of setoid_subst for individual variable.

parent 5704668c
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,14 @@ Notation "x ={ n }= y" := (dist n x y)
(at level 70, n at next level, format "x ={ n }= y").
Hint Extern 0 (?x ={_}= ?x) => reflexivity.
Hint Extern 0 (_ ={_}= _) => symmetry; assumption.
Ltac cofe_subst :=
Tactic Notation "cofe_subst" ident(x) :=
repeat match goal with
| _ => progress simplify_equality'
| H:@dist ?A ?d ?n x _ |- _ => setoid_subst_aux (@dist A d n) x
| H:@dist ?A ?d ?n _ x |- _ => symmetry in H;setoid_subst_aux (@dist A d n) x
end.
Tactic Notation "cofe_subst" :=
repeat match goal with
| _ => progress simplify_equality'
| H:@dist ?A ?d ?n ?x _ |- _ => setoid_subst_aux (@dist A d n) x
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment