File tree 2 files changed +5
-7
lines changed
2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -768,7 +768,7 @@ void bv_pointerst::do_postponed(
768
768
if (!is_dynamic)
769
769
l2=!l2;
770
770
771
- prop.l_set_to (prop.limplies (l1, l2), true );
771
+ prop.l_set_to_true (prop.limplies (l1, l2));
772
772
}
773
773
}
774
774
else if (postponed.expr .id ()==ID_object_size)
@@ -814,7 +814,7 @@ void bv_pointerst::do_postponed(
814
814
literalt l1=bv_utils.equal (bv, saved_bv);
815
815
literalt l2=bv_utils.equal (postponed.bv , size_bv);
816
816
817
- prop.l_set_to (prop.limplies (l1, l2), true );
817
+ prop.l_set_to_true (prop.limplies (l1, l2));
818
818
}
819
819
}
820
820
else
Original file line number Diff line number Diff line change @@ -540,7 +540,7 @@ bvt bv_utilst::negate(const bvt &bv)
540
540
541
541
bvt bv_utilst::negate_no_overflow (const bvt &bv)
542
542
{
543
- prop.l_set_to (overflow_negate (bv), false );
543
+ prop.l_set_to_false (overflow_negate (bv));
544
544
return negate (bv);
545
545
}
546
546
@@ -780,9 +780,7 @@ bvt bv_utilst::absolute_value(const bvt &bv)
780
780
781
781
bvt bv_utilst::cond_negate_no_overflow (const bvt &bv, literalt cond)
782
782
{
783
- prop.l_set_to (
784
- prop.limplies (cond, !overflow_negate (bv)),
785
- true );
783
+ prop.l_set_to_true (prop.limplies (cond, !overflow_negate (bv)));
786
784
787
785
return cond_negate (bv, cond);
788
786
}
@@ -802,7 +800,7 @@ bvt bv_utilst::signed_multiplier_no_overflow(
802
800
803
801
bvt result=unsigned_multiplier_no_overflow (neg0, neg1);
804
802
805
- prop.l_set_to (result[result.size ()- 1 ], false );
803
+ prop.l_set_to_false (result[result.size () - 1 ] );
806
804
807
805
literalt result_sign=prop.lxor (sign0, sign1);
808
806
You can’t perform that action at this time.
0 commit comments