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

Close issue #223: make instance anonymous and put a comment why the instance is there.

parent 84188aac
No related branches found
No related tags found
No related merge requests found
......@@ -413,7 +413,11 @@ Section homomorphisms.
Context `{Monoid M1 o1, Monoid M2 o2}.
Infix "`o1`" := o1 (at level 50, left associativity).
Infix "`o2`" := o2 (at level 50, left associativity).
Instance foo {A} (R : relation A) : RewriteRelation R.
(** The ssreflect rewrite tactic only works for relations that have a
[RewriteRelation] instance. For the purpose of this section, we want to
rewrite with arbitrary relations, so we declare any relation to be a
[RewriteRelation]. *)
Local Instance: {A} (R : relation A), RewriteRelation R.
Lemma big_opL_commute {A} (h : M1 M2) `{!MonoidHomomorphism o1 o2 R h}
(f : nat A M1) l :
......
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