Skip to content

Commit 2c9232b

Browse files
committed
[ re agda#1752 ] add properties of ordered structures for Nat.
1 parent cadca35 commit 2c9232b

File tree

2 files changed

+230
-230
lines changed

2 files changed

+230
-230
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1269,6 +1269,16 @@ Other minor changes
12691269
12701270
anyUpTo? : ∀ (P? : U.Decidable P) (v : ℕ) → Dec (∃ λ n → n < v × P n)
12711271
allUpTo? : ∀ (P? : U.Decidable P) (v : ℕ) → Dec (∀ {n} → n < v → P n)
1272+
1273+
+-isPomagma : IsPomagma _+_
1274+
+-isPosemigroup : IsPosemigroup _+_
1275+
+-0-isPomonoid : IsPomonoid _+_ 0
1276+
+-0-isCommutativePomonoid : IsCommutativePomonoid _+_ 0
1277+
+-0-commutativePomonoid : CommutativePomonoid 0ℓ 0ℓ 0ℓ
1278+
+-*-isPosemiring : IsPosemiring _+_ _*_ 0 1
1279+
*-1-isCommutativePomonoid : IsCommutativePomonoid _*_ 1
1280+
+-*-posemiring : Posemiring 0ℓ 0ℓ 0ℓ
1281+
*-1-commutativePomonoid : CommutativePomonoid 0ℓ 0ℓ 0ℓ
12721282
```
12731283

12741284
* Added new functions in `Data.Nat`:

0 commit comments

Comments
 (0)