Two's complement addition. Remarks: The arguments must have the same bit-vector sort.
(Expr<BitVecSort> t1, Expr<BitVecSort> t2)
| 1282 | * bit-vector sort. |
| 1283 | **/ |
| 1284 | public BitVecExpr mkBVAdd(Expr<BitVecSort> t1, Expr<BitVecSort> t2) |
| 1285 | { |
| 1286 | checkContextMatch(t1); |
| 1287 | checkContextMatch(t2); |
| 1288 | return new BitVecExpr(this, Native.mkBvadd(nCtx(), |
| 1289 | t1.getNativeObject(), t2.getNativeObject())); |
| 1290 | } |
| 1291 | |
| 1292 | /** |
| 1293 | * Two's complement subtraction. |
no test coverage detected