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

Move out equality use out of the loop

This commit is contained in:
Nikolaj Bjorner 2022-07-04 12:42:39 -07:00
parent 0353fc38ff
commit 71fc83c051

View file

@ -551,11 +551,12 @@ namespace smt {
if (aarg->get_root() == child->get_root()) {
if (aarg != child)
m_used_eqs.push_back(enode_pair(aarg, child));
if (sibling != arg)
m_used_eqs.push_back(enode_pair(arg, sibling));
found = true;
}
}
if (sibling && sibling != arg)
m_used_eqs.push_back(enode_pair(arg, sibling));
}
}
VERIFY(found);