dcd7e53fa7
We don't need it anymore after previous commit 2a16050
6 lines
212 B
Text
6 lines
212 B
Text
id : ?A → ?A
|
|
trans : (?A → ?A → Prop) → Prop
|
|
symm : (?A → ?A → Prop) → Prop
|
|
equivalence : (?A → ?A → Prop) → Prop
|
|
λ (A : Type) (R : A → A → Prop),
|
|
and (and (refl R) (symm R)) (trans R)
|