3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

fix crash on EBxzQox7raUO.smt2

This commit is contained in:
Jakob Rath 2024-03-25 13:20:24 +01:00
parent ac6554eb92
commit 8a23523f20

View file

@ -131,6 +131,12 @@ namespace polysat {
break;
if (m_fixed[i].length != m_fixed[j].length)
break;
if (m_fixed[i].value != m_fixed[j].value) {
// same subslice, but with different values;
// this should not happen in a fully saturated egraph (wrt. bv_plugin).
break;
}
VERIFY(m_fixed[j].child != null_var);
SASSERT(m_fixed[i].value == m_fixed[j].value);
i = j;