Equations
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Return .done
for positive Int values. We don't want to unfold in the symbolic evaluator.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Int.reduceAdd = Int.reduceBin `HAdd.hAdd 6 fun (x x_1 : Int) => x + x_1
Instances For
Equations
- Int.reduceMul = Int.reduceBin `HMul.hMul 6 fun (x x_1 : Int) => x * x_1
Instances For
Equations
- Int.reduceSub = Int.reduceBin `HSub.hSub 6 fun (x x_1 : Int) => x - x_1
Instances For
Equations
- Int.reduceDiv = Int.reduceBin `HDiv.hDiv 6 fun (x x_1 : Int) => x / x_1
Instances For
Equations
- Int.reduceMod = Int.reduceBin `HMod.hMod 6 fun (x x_1 : Int) => x % x_1
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Int.reduceLT = Int.reduceBinPred `LT.lt 4 fun (x x_1 : Int) => decide (x < x_1)
Instances For
Equations
- Int.reduceLE = Int.reduceBinPred `LE.le 4 fun (x x_1 : Int) => decide (x ≤ x_1)
Instances For
Equations
- Int.reduceGT = Int.reduceBinPred `GT.gt 4 fun (x x_1 : Int) => decide (x > x_1)
Instances For
Equations
- Int.reduceGE = Int.reduceBinPred `GE.ge 4 fun (x x_1 : Int) => decide (x ≥ x_1)
Instances For
Equations
- Int.reduceEq = Int.reduceBinPred `Eq 3 fun (x x_1 : Int) => decide (x = x_1)
Instances For
Equations
- Int.reduceNe = Int.reduceBinPred `Ne 3 fun (x x_1 : Int) => decide (x ≠ x_1)
Instances For
Equations
- Int.reduceBEq = Int.reduceBoolPred `BEq.beq 4 fun (x x_1 : Int) => x == x_1
Instances For
Equations
- Int.reduceBNe = Int.reduceBoolPred `bne 4 fun (x x_1 : Int) => x != x_1
Instances For
@[inline]
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Int.reduceAbs = Int.reduceNatCore `Int.natAbs Int.natAbs
Instances For
Equations
- Int.reduceToNat = Int.reduceNatCore `Int.toNat Int.toNat
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.