mirror of
https://github.com/Z3Prover/z3
synced 2026-04-15 08:44:10 +00:00
We forgot relevant equations with one side being empty
This commit is contained in:
parent
684f93bed4
commit
803018b7c3
1 changed files with 2 additions and 2 deletions
|
|
@ -1567,7 +1567,7 @@ namespace seq {
|
|||
e->add_subst(subst);
|
||||
child->apply_subst(m_sg, subst);
|
||||
|
||||
if (!lhs_rest->is_empty() && !rhs_rest->is_empty())
|
||||
if (!lhs_rest->is_empty() || !rhs_rest->is_empty())
|
||||
eqs.push_back(str_eq(lhs_rest, rhs_rest, eq.m_dep));
|
||||
return true;
|
||||
}
|
||||
|
|
@ -1602,7 +1602,7 @@ namespace seq {
|
|||
e->add_subst(subst);
|
||||
child->apply_subst(m_sg, subst);
|
||||
|
||||
if (!lhs_rest->is_empty() && !rhs_rest->is_empty())
|
||||
if (!lhs_rest->is_empty() || !rhs_rest->is_empty())
|
||||
eqs.push_back(str_eq(lhs_rest, rhs_rest, eq.m_dep));
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue