11Version 2.1-dev
22===============
33
4- The library has been tested using Agda 2.6.4 and 2.6.4.1 .
4+ The library has been tested using Agda 2.6.4, 2.6.4.1, and 2.6.4.3 .
55
66Highlights
77----------
@@ -33,6 +33,9 @@ Other major improvements
3333Deprecated modules
3434------------------
3535
36+ * ` Data.List.Relation.Binary.Sublist.Propositional.Disjoint ` deprecated in favour of
37+ ` Data.List.Relation.Binary.Sublist.Propositional.Slice ` .
38+
3639Deprecated names
3740----------------
3841
@@ -80,6 +83,12 @@ New modules
8083 Algebra.Module.Construct.Idealization
8184 ```
8285
86+ * ` Data.List.Relation.Binary.Sublist.Propositional.Slice `
87+ replacing ` Data.List.Relation.Binary.Sublist.Propositional.Disjoint ` (* )
88+ and adding new functions:
89+ - ` ⊆-upper-bound-is-cospan ` generalising ` ⊆-disjoint-union-is-cospan ` from (* )
90+ - ` ⊆-upper-bound-cospan ` generalising ` ⊆-disjoint-union-cospan ` from (* )
91+
8392* ` Data.Vec.Functional.Relation.Binary.Permutation ` , defining:
8493 ``` agda
8594 _↭_ : IRel (Vector A) _
@@ -170,7 +179,7 @@ Additions to existing modules
170179 quasigroup : Quasigroup _ _
171180 isLoop : IsLoop _∙_ _\\_ _//_ ε
172181 loop : Loop _ _
173-
182+
174183 \\-leftDividesˡ : LeftDividesˡ _∙_ _\\_
175184 \\-leftDividesʳ : LeftDividesʳ _∙_ _\\_
176185 \\-leftDivides : LeftDivides _∙_ _\\_
@@ -189,7 +198,7 @@ Additions to existing modules
189198 identityʳ-unique : x ∙ y ≈ x → y ≈ ε
190199 identity-unique : Identity x _∙_ → x ≈ ε
191200 ```
192-
201+
193202* In ` Algebra.Construct.Terminal ` :
194203 ``` agda
195204 rawNearSemiring : RawNearSemiring c ℓ
@@ -218,7 +227,7 @@ Additions to existing modules
218227 _\\_ : Op₂ A
219228 x \\ y = (x ⁻¹) ∙ y
220229 ```
221-
230+
222231* In ` Data.Container.Indexed.Core ` :
223232 ``` agda
224233 Subtrees o c = (r : Response c) → X (next c r)
@@ -301,6 +310,11 @@ Additions to existing modules
301310 pointwise⊆any : Pointwise R (just x) ⊆ Any (R x)
302311 ```
303312
313+ * In ` Data.List.Relation.Binary.Sublist.Setoid ` :
314+ ``` agda
315+ ⊆-upper-bound : ∀ {xs ys zs} (τ : xs ⊆ zs) (σ : ys ⊆ zs) → UpperBound τ σ
316+ ```
317+
304318* In ` Data.Nat.Divisibility ` :
305319 ``` agda
306320 quotient≢0 : m ∣ n → .{{NonZero n}} → NonZero quotient
@@ -327,7 +341,7 @@ Additions to existing modules
327341 pred-injective : .{{NonZero m}} → .{{NonZero n}} → pred m ≡ pred n → m ≡ n
328342 pred-cancel-≡ : pred m ≡ pred n → ((m ≡ 0 × n ≡ 1) ⊎ (m ≡ 1 × n ≡ 0)) ⊎ m ≡ n
329343 ```
330-
344+
331345* Added new proofs to ` Data.Nat.Primality ` :
332346 ``` agda
333347 rough∧square>⇒prime : .{{NonTrivial n}} → m Rough n → m * m > n → Prime n
0 commit comments