3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 12:08:18 +00:00

check m_unassigned_bounds in bound_is_interesting

This commit is contained in:
Lev Nachmanson 2023-09-15 06:15:22 -07:00
parent a55aa1a648
commit 762ade2a79

View file

@ -2239,6 +2239,9 @@ public:
if (v == null_theory_var) if (v == null_theory_var)
return false; return false;
if (m_unassigned_bounds[v] == 0)
return false;
if (should_refine_bounds()) if (should_refine_bounds())
return true; return true;