3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-12-25 11:07:14 -08:00
parent 5a68fc8c07
commit de6409f558

View file

@ -207,7 +207,6 @@ namespace dd {
}
}
if (linear.empty()) return false;
std::cout << "linear eqs: " << linear.size() << "\n";
vector<equation_vector> use_list;
for (equation * e : m_to_simplify) {
add_to_use(e, use_list);
@ -227,7 +226,7 @@ namespace dd {
if (dst->is_processed() && changed_leading_term) {
dst->set_processed(false);
pop_equation(dst, m_processed);
push_equation(src, m_to_simplify);
push_equation(dst, m_to_simplify);
}
}
}