2014-10-30 20:12:45 +00:00
|
|
|
id : ?A → ?A
|
|
|
|
trans : (?A → ?A → Prop) → Prop
|
|
|
|
symm : (?A → ?A → Prop) → Prop
|
|
|
|
equivalence : (?A → ?A → Prop) → Prop
|
2014-09-07 19:28:58 +00:00
|
|
|
λ (A : Type) (R : A → A → Prop),
|
2014-07-10 01:47:10 +00:00
|
|
|
and (and (refl R) (symm R)) (trans R)
|