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:
parent
ac6554eb92
commit
8a23523f20
1 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue