3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-22 05:43:39 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-15 12:45:16 -07:00 committed by Lev Nachmanson
parent e7960e63da
commit b41b83cd63
5 changed files with 8 additions and 4 deletions

View file

@ -1029,6 +1029,7 @@ namespace smt {
void push_eq(enode * lhs, enode * rhs, eq_justification const & js) {
if (lhs->get_root() != rhs->get_root()) {
SASSERT(m.get_sort(lhs->get_owner()) == m.get_sort(rhs->get_owner()));
m_eq_propagation_queue.push_back(new_eq(lhs, rhs, js));
}
}