3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-03 22:05:45 +00:00

debug grobner and improve printing

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-12-02 09:14:22 -08:00
parent 69c89426da
commit 687f30a2ce
6 changed files with 67 additions and 18 deletions

View file

@ -847,6 +847,7 @@ void grobner::superpose(equation * eq1, equation * eq2) {
if (new_monomials.empty())
return;
m_num_new_equations++;
TRACE("grobner", tout << "success superposing\n";);
equation * new_eq = alloc(equation);
new_eq->m_monomials.swap(new_monomials);
init_equation(new_eq, m_dep_manager.mk_join(eq1->m_dep, eq2->m_dep));