diff options
author | Matthieu Sozeau <mattam@mattam.org> | 2016-03-24 18:19:08 +0100 |
---|---|---|
committer | Matthieu Sozeau <mattam@mattam.org> | 2016-03-24 18:22:26 +0100 |
commit | a6d6bca5f024cbdc35924c2cb5e399eb8a2d9c16 (patch) | |
tree | 972d67263b86466b67ad3ed744042cf6aff31f12 /theories/Classes | |
parent | 866b7539cca2bd48c230bc6ddf3acea89cb1450a (diff) |
Fix handling of arity of definitional classes.
The user-provided sort was ignored for them.
Diffstat (limited to 'theories/Classes')
-rw-r--r-- | theories/Classes/CMorphisms.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Classes/CMorphisms.v b/theories/Classes/CMorphisms.v index c41eb2fa2..10f18fe70 100644 --- a/theories/Classes/CMorphisms.v +++ b/theories/Classes/CMorphisms.v @@ -527,7 +527,7 @@ Hint Extern 7 (@Proper _ _ _) => proper_reflexive Section Normalize. Context (A : Type). - Class Normalizes (m : crelation A) (m' : crelation A) : Prop := + Class Normalizes (m : crelation A) (m' : crelation A) := normalizes : relation_equivalence m m'. (** Current strategy: add [flip] everywhere and reduce using [subrelation] |