Skip to content

Commit fb9f04c

Browse files
committed
[ re agda#1752 ] add properties of ordered structures for Nat.
1 parent 594f239 commit fb9f04c

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
@@ -1265,6 +1265,16 @@ Other minor changes
12651265
12661266
anyUpTo? : ∀ (P? : U.Decidable P) (v : ℕ) → Dec (∃ λ n → n < v × P n)
12671267
allUpTo? : ∀ (P? : U.Decidable P) (v : ℕ) → Dec (∀ {n} → n < v → P n)
1268+
1269+
+-isPomagma : IsPomagma _+_
1270+
+-isPosemigroup : IsPosemigroup _+_
1271+
+-0-isPomonoid : IsPomonoid _+_ 0
1272+
+-0-isCommutativePomonoid : IsCommutativePomonoid _+_ 0
1273+
+-0-commutativePomonoid : CommutativePomonoid 0ℓ 0ℓ 0ℓ
1274+
+-*-isPosemiring : IsPosemiring _+_ _*_ 0 1
1275+
*-1-isCommutativePomonoid : IsCommutativePomonoid _*_ 1
1276+
+-*-posemiring : Posemiring 0ℓ 0ℓ 0ℓ
1277+
*-1-commutativePomonoid : CommutativePomonoid 0ℓ 0ℓ 0ℓ
12681278
```
12691279

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

0 commit comments

Comments
 (0)