Two's complement subtraction. Remarks: The arguments must have the same bit-vector sort.
(Expr<BitVecSort> t1, Expr<BitVecSort> t2)
| 1295 | * bit-vector sort. |
| 1296 | **/ |
| 1297 | public BitVecExpr mkBVSub(Expr<BitVecSort> t1, Expr<BitVecSort> t2) |
| 1298 | { |
| 1299 | checkContextMatch(t1); |
| 1300 | checkContextMatch(t2); |
| 1301 | return new BitVecExpr(this, Native.mkBvsub(nCtx(), |
| 1302 | t1.getNativeObject(), t2.getNativeObject())); |
| 1303 | } |
| 1304 | |
| 1305 | /** |
| 1306 | * Two's complement multiplication. |
no test coverage detected