A constant Integer value expression
Readonly
Adds two numbers together
Divides the number by the second one
Returns whether the number is greater or equal than the second one (>=)
>=
Returns whether the number is greater than the second one (>)
>
Return whether the number is less or equal than the second one (<=)
<=
Returns whether the number is less than the second one (<)
<
Returns a number modulo second one
const x = Int.const('x');await solve(x.mod(7).eq(1), x.gt(7)) // x % 7 == 1, x > 7// x=8 Copy
const x = Int.const('x');await solve(x.mod(7).eq(1), x.gt(7)) // x % 7 == 1, x > 7// x=8
Multiplies two numbers together
Returns a negation of the number
Applies power to the number
const x = Int.const('x');await solve(x.pow(2).eq(4), x.lt(0)); // x**2 == 4, x < 0// x=-2 Copy
const x = Int.const('x');await solve(x.pow(2).eq(4), x.lt(0)); // x**2 == 4, x < 0// x=-2
Subtract second number from the first one
A constant Integer value expression