Create an expression representing t1 >= t2
(Expr<? extends ArithSort> t1, Expr<? extends ArithSort> t2)
| 1107 | * Create an expression representing {@code t1 >= t2} |
| 1108 | **/ |
| 1109 | public BoolExpr mkGe(Expr<? extends ArithSort> t1, Expr<? extends ArithSort> t2) |
| 1110 | { |
| 1111 | checkContextMatch(t1); |
| 1112 | checkContextMatch(t2); |
| 1113 | return new BoolExpr(this, Native.mkGe(nCtx(), t1.getNativeObject(), |
| 1114 | t2.getNativeObject())); |
| 1115 | } |
| 1116 | |
| 1117 | /** |
| 1118 | * Coerce an integer to a real. |
no test coverage detected