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

Make f_equiv slightly more robust.

Now, for example, when having equiv (Some x) (Some y) it will
try to find a Proper whose range is an equiv before hitting the
eq instance. My hack is general enough that it works for Forall2,
dist, and so on, too.
parent f4320358
No related branches found
No related tags found
No related merge requests found
...@@ -251,8 +251,10 @@ Ltac setoid_subst := ...@@ -251,8 +251,10 @@ Ltac setoid_subst :=
end. end.
(** f_equiv works on goals of the form "f _ = f _", for any relation and any (** f_equiv works on goals of the form "f _ = f _", for any relation and any
number of arguments. It looks for an appropriate "Proper" instance, and number of arguments. It looks for an appropriate "Proper" instance, and applies
applies it. *) it. The tactic is somewhat limited, since it cannot be used to backtrack on
the Proper instances that has been found. To that end, we try to ensure the
trivial instance in which the resulting goals have an [eq]. *)
Ltac f_equiv := Ltac f_equiv :=
match goal with match goal with
| _ => reflexivity | _ => reflexivity
...@@ -263,10 +265,16 @@ Ltac f_equiv := ...@@ -263,10 +265,16 @@ Ltac f_equiv :=
| |- ?R (match ?x with _ => _ end) (match ?x with _ => _ end) => | |- ?R (match ?x with _ => _ end) (match ?x with _ => _ end) =>
destruct x destruct x
(* First assume that the arguments need the same relation as the result *) (* First assume that the arguments need the same relation as the result *)
| |- ?R (?f ?x) (?f _) => | |- ?R (?f ?x) (?f _) => apply (_ : Proper (R ==> R) f)
apply (_ : Proper (R ==> R) f) (* For the case in which R is polymorphic, or an operational type class,
| |- ?R (?f ?x ?y) (?f _ _) => like equiv. *)
apply (_ : Proper (R ==> R ==> R) f) | |- (?R _) (?f ?x) (?f _) => apply (_ : Proper (R _ ==> _) f)
| |- (?R _ _) (?f ?x) (?f _) => apply (_ : Proper (R _ _ ==> _) f)
| |- (?R _ _ _) (?f ?x) (?f _) => apply (_ : Proper (R _ _ _ ==> _) f)
| |- (?R _) (?f ?x ?y) (?f _ _) => apply (_ : Proper (R _ ==> R _ ==> _) f)
| |- (?R _ _) (?f ?x ?y) (?f _ _) => apply (_ : Proper (R _ _ ==> R _ _ ==> _) f)
| |- (?R _ _ _) (?f ?x ?y) (?f _ _) => apply (_ : Proper (R _ _ _ ==> R _ _ _ ==> _) f)
| |- (?R _ _ _ _) (?f ?x ?y) (?f _ _) => apply (_ : Proper (R _ _ _ _ ==> R _ _ _ _ ==> _) f)
(* Next, try to infer the relation. Unfortunately, there is an instance (* Next, try to infer the relation. Unfortunately, there is an instance
of Proper for (eq ==> _), which will always be matched. *) of Proper for (eq ==> _), which will always be matched. *)
(* TODO: Can we exclude that instance? *) (* TODO: Can we exclude that instance? *)
......
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