Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,13 @@ Bug-fixes
infix 8 _⁻¹ (Data.Parity.Base)
infixr 5 _`∷_ (Data.Vec.Reflection)
infixr 5 _∷=_ (Data.Vec.Membership.Setoid)
infix 4 _≟H_ _≟N_ (Algebra.Solver.Ring)
infix 4 _≈_ (Relation.Binary.Bundles)
infixl 6 _∩_ (Relation.Binary.Construct.Intersection)
infix 4 _<₋_ (Relation.Binary.Construct.Add.Infimum.Strict)
infix 4 _≈∙_ (Relation.Binary.Construct.Add.Point.Equality)
infix 4 _≤⁺_ _≤⊤⁺ (Relation.Binary.Construct.Add.Supremum.NonStrict)
infixr 5 _∷ʳ_ (Relation.Binary.Construct.Closure.Transitive)
```

* In `System.Exit`, the `ExitFailure` constructor is now carrying an integer
Expand Down
2 changes: 2 additions & 0 deletions src/Algebra/Solver/Ring.agda
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,8 @@ mutual

-- Equality is weakly decidable.

infix 4 _≟H_ _≟N_

_≟H_ : ∀ {n} → WeaklyDecidable (_≈H_ {n = n})
∅ ≟H ∅ = just ∅
∅ ≟H (_ *x+ _) = nothing
Expand Down
1 change: 1 addition & 0 deletions src/Relation/Binary/Bundles.agda
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ open import Relation.Binary.Structures
------------------------------------------------------------------------

record PartialSetoid a ℓ : Set (suc (a ⊔ ℓ)) where
infix 4 _≈_
field
Carrier : Set a
_≈_ : Rel Carrier ℓ
Expand Down
2 changes: 2 additions & 0 deletions src/Relation/Binary/Construct/Add/Infimum/Strict.agda
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ import Relation.Nullary.Decidable as Dec
------------------------------------------------------------------------
-- Definition

infix 4 _<₋_

data _<₋_ : Rel (A ₋) (a ⊔ ℓ) where
⊥₋<[_] : (l : A) → ⊥₋ <₋ [ l ]
[_] : {k l : A} → k < l → [ k ] <₋ [ l ]
Expand Down
2 changes: 2 additions & 0 deletions src/Relation/Binary/Construct/Add/Point/Equality.agda
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ import Relation.Nullary.Decidable as Dec
------------------------------------------------------------------------
-- Definition

infix 4 _≈∙_

data _≈∙_ : Rel (Pointed A) (a ⊔ ℓ) where
∙≈∙ : ∙ ≈∙ ∙
[_] : {k l : A} → k ≈ l → [ k ] ≈∙ [ l ]
Expand Down
2 changes: 2 additions & 0 deletions src/Relation/Binary/Construct/Add/Supremum/NonStrict.agda
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ import Relation.Binary.Construct.Add.Supremum.Equality as Equality
------------------------------------------------------------------------
-- Definition

infix 4 _≤⁺_ _≤⊤⁺

data _≤⁺_ : Rel (A ⁺) (a ⊔ ℓ) where
[_] : {k l : A} → k ≤ l → [ k ] ≤⁺ [ l ]
_≤⊤⁺ : (k : A ⁺) → k ≤⁺ ⊤⁺
Expand Down
2 changes: 2 additions & 0 deletions src/Relation/Binary/Construct/Closure/Transitive.agda
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ module _ {_∼_ : Rel A ℓ} where
private
_∼⁺_ = TransClosure _∼_

infixr 5 _∷ʳ_

_∷ʳ_ : ∀ {x y z} → (x∼⁺y : x ∼⁺ y) (y∼z : y ∼ z) → x ∼⁺ z
[ x∼y ] ∷ʳ y∼z = x∼y ∷ [ y∼z ]
(x∼y ∷ x∼⁺y) ∷ʳ y∼z = x∼y ∷ (x∼⁺y ∷ʳ y∼z)
Expand Down
2 changes: 2 additions & 0 deletions src/Relation/Binary/Construct/Intersection.agda
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ private
------------------------------------------------------------------------
-- Definition

infixl 6 _∩_

_∩_ : REL A B ℓ₁ → REL A B ℓ₂ → REL A B (ℓ₁ ⊔ ℓ₂)
L ∩ R = λ i j → L i j × R i j

Expand Down