3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 05:18:44 +00:00

port Grobner

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-10-16 17:15:25 -07:00
parent 451168a399
commit 628bbcc676

View file

@ -636,7 +636,7 @@ grobner::equation * grobner::simplify_source_target(equation const * source, equ
break;
}
} while (!m_manager.canceled());
TRACE("grobner", tout << "result: "; display_equation(tout, *target););
TRACE("grobner", tout << "result: " << result << "\n"; if (result) display_equation(tout, *target););
if (result) {
target->m_dep = m_dep_manager.mk_join(target->m_dep, source->m_dep);
return target;