File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1287,7 +1287,7 @@ literalt bv_utilst::equal(const bvt &op0, const bvt &op1)
1287
1287
1288
1288
// Saves space but slows the solver
1289
1289
// There is a variant that uses the xor as an auxiliary that should improve both
1290
- // #define COMPACT_LT_OR_LE
1290
+ #define COMPACT_LT_OR_LE
1291
1291
1292
1292
1293
1293
@@ -1313,7 +1313,7 @@ literalt bv_utilst::lt_or_le(
1313
1313
compareBelow = prop.new_variables (bv0.size ());
1314
1314
result = prop.new_variable ();
1315
1315
1316
- if (rep==SIGNED)
1316
+ if (rep==representationt:: SIGNED)
1317
1317
{
1318
1318
INVARIANT (
1319
1319
bv0.size () >= 2 , " signed bitvectors should have at least two bits" );
@@ -1414,7 +1414,7 @@ literalt bv_utilst::unsigned_less_than(
1414
1414
const bvt &op1)
1415
1415
{
1416
1416
#ifdef COMPACT_LT_OR_LE
1417
- return lt_or_le (false , op0, op1, UNSIGNED);
1417
+ return lt_or_le (false , op0, op1, representationt:: UNSIGNED);
1418
1418
#else
1419
1419
// A <= B iff there is an overflow on A-B
1420
1420
return !carry_out (op0, inverted (op1), const_literal (true ));
You can’t perform that action at this time.
0 commit comments