3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-02 20:31:21 +00:00

test and fix viable2

This commit is contained in:
Nikolaj Bjorner 2021-11-14 20:55:12 -08:00
parent 4261345503
commit 69a17d0c60
4 changed files with 90 additions and 8 deletions

View file

@ -200,12 +200,12 @@ namespace polysat {
if (a1 != a2 && !a1.is_zero() && !a2.is_zero())
return false;
SASSERT(b1.is_val());
SASSERT(b2.is_val());
LOG("values " << a1 << " " << a2);
SASSERT(b2.is_val());
_backtrack.released = true;
// LOG("add " << c << " " << a1 << " " << b1 << " " << a2 << " " << b2);
if (match_linear1(c, a1, b1, e1, a2, b2, e2, out_interval, out_side_cond))
return true;
if (match_linear2(c, a1, b1, e1, a2, b2, e2, out_interval, out_side_cond))