mirror of
https://github.com/Z3Prover/z3
synced 2025-07-18 02:16:40 +00:00
bugfixes
This commit is contained in:
parent
7dc4ce8259
commit
ab0459e5aa
6 changed files with 29 additions and 20 deletions
|
@ -103,9 +103,9 @@ namespace bv {
|
|||
else if (!sign && m.is_eq(e, s, t)) {
|
||||
if (bv.is_numeral(s, a))
|
||||
// t - a <= 0
|
||||
init_range(t, -a, nullptr, rational(0), !sign);
|
||||
init_range(t, -a, nullptr, rational(0), false);
|
||||
else if (bv.is_numeral(t, a))
|
||||
init_range(s, -a, nullptr, rational(0), !sign);
|
||||
init_range(s, -a, nullptr, rational(0), false);
|
||||
}
|
||||
else if (bv.is_bit2bool(e, s, idx)) {
|
||||
auto& val = wval0(s);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue