File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
src/Relation/Binary/Construct/Interior Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -90,3 +90,8 @@ Additions to existing modules
90
90
``` agda
91
91
map : (Char → Char) → String → String
92
92
```
93
+
94
+ * Added new definitions in ` Relation.Binary.Definitions ` :
95
+ ``` agda
96
+ Empty _∼_ = ∀ {x y} → x ∼ y → ⊥
97
+ ```
Original file line number Diff line number Diff line change @@ -61,8 +61,8 @@ transitive : Transitive R → Transitive (SymInterior R)
61
61
transitive tr = trans tr tr
62
62
63
63
-- The symmetric interior of a strict relation is empty.
64
- Empty-SymInterior : Asymmetric R → Empty (SymInterior R)
65
- Empty-SymInterior asym (r , r′) = asym r r′
64
+ asymmetric⇒empty : Asymmetric R → Empty (SymInterior R)
65
+ asymmetric⇒empty asym (r , r′) = asym r r′
66
66
67
67
record Proset c ℓ : Set (suc (c ⊔ ℓ)) where
68
68
infix 4 _≤_
You can’t perform that action at this time.
0 commit comments