use of com.microsoft.z3.BitVecExpr in project batfish by batfish.
the class BoolExprTransformerTest method testVisitEqExpr.
@Test
public void testVisitEqExpr() {
IntExpr i1Batfish = newIntAtom();
IntExpr i2Batfish = newIntAtom();
BitVecExpr i1Z3 = toBitVecExpr(i1Batfish, _nodContext);
BitVecExpr i2Z3 = toBitVecExpr(i2Batfish, _nodContext);
assertThat(toBoolExpr(new EqExpr(i1Batfish, i2Batfish), _input, _nodContext), equalTo(_ctx.mkEq(i1Z3, i2Z3)));
}
Aggregations