We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
n≮0
Data.Nat.Properties
1 parent 1a91258 commit fb1d6f4Copy full SHA for fb1d6f4
CHANGELOG.md
@@ -692,6 +692,7 @@ Other minor changes
692
693
* Added new proofs in `Data.Nat.Properties`:
694
```agda
695
+ n≮0 : n ≮ 0
696
n+1+m≢m : n + suc m ≢ m
697
m*n≡0⇒m≡0 : .{{_ : NonZero n}} → m * n ≡ 0 → m ≡ 0
698
```
src/Data/Nat/Properties.agda
@@ -396,6 +396,9 @@ _>?_ = flip _<?_
396
------------------------------------------------------------------------
397
-- Other properties of _<_
398
399
+n≮0 : ∀ {n} → n ≮ 0
400
+n≮0 ()
401
+
402
n≮n : ∀ n → n ≮ n
403
n≮n n = <-irrefl (refl {x = n})
404
0 commit comments