GreaterEqual
GreaterEqual(x, y)
x >= y
yields
True
ifx
is known to be greater than or equal toy
.
lhs >= rhs
represents the inequality
lhs >= rhs
.
Examples
>> x>=xTrue
>> {GreaterEqual(), GreaterEqual(x), GreaterEqual(1)}{True, True, True}
Implementation status
- ✅ - full supported