Equations
- Auto.Int.beq (Int.ofNat n₁) (Int.ofNat n₂) = n₁.beq n₂
- Auto.Int.beq (Int.negSucc n₁) (Int.negSucc n₂) = n₁.beq n₂
- Auto.Int.beq x✝¹ x✝ = false
Instances For
theorem
Auto.Int.shiftRight_def
(i : Int)
(s : Nat)
:
i >>> s = match i with
| Int.ofNat n => Int.ofNat (n >>> s)
| Int.negSucc n => Int.negSucc (n >>> s)