Bit-vector concatenation. Remarks: The arguments must have a bit-vector sort. @return The result is a bit-vector of size n1+n2, where n1 (n2) is the size of t1 (t2).
(Expr<BitVecSort> t1, Expr<BitVecSort> t2)
| 1513 | * |
| 1514 | **/ |
| 1515 | public BitVecExpr mkConcat(Expr<BitVecSort> t1, Expr<BitVecSort> t2) |
| 1516 | { |
| 1517 | checkContextMatch(t1); |
| 1518 | checkContextMatch(t2); |
| 1519 | return new BitVecExpr(this, Native.mkConcat(nCtx(), |
| 1520 | t1.getNativeObject(), t2.getNativeObject())); |
| 1521 | } |
| 1522 | |
| 1523 | /** |
| 1524 | * Bit-vector extraction. |
no test coverage detected