We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ab93180 + 7ca319a commit 167e21cCopy full SHA for 167e21c
src/solvers/flattening/bv_utils.cpp
@@ -1231,7 +1231,7 @@ literalt bv_utilst::lt_or_le(
1231
compareBelow = prop.new_variables(bv0.size());
1232
result = prop.new_variable();
1233
1234
- if(rep==SIGNED)
+ if(rep == representationt::SIGNED)
1235
{
1236
INVARIANT(
1237
bv0.size() >= 2, "signed bitvectors should have at least two bits");
@@ -1332,7 +1332,7 @@ literalt bv_utilst::unsigned_less_than(
1332
const bvt &op1)
1333
1334
#ifdef COMPACT_LT_OR_LE
1335
- return lt_or_le(false, op0, op1, UNSIGNED);
+ return lt_or_le(false, op0, op1, representationt::UNSIGNED);
1336
#else
1337
// A <= B iff there is an overflow on A-B
1338
return !carry_out(op0, inverted(op1), const_literal(true));
0 commit comments