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

port Grobner

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-10-21 17:17:21 -07:00
parent 80d566ed4f
commit 45efc73728

View file

@ -489,8 +489,13 @@ void nla_grobner::simplify_to_process(equation* eq) {
}
// let eq1: ab+q=0, and eq2: ac+e=0, then qc - eb = 0
void nla_grobner::superpose(equation * eq1, equation * eq2) {
TRACE("grobner", tout << "eq1="; display_equation(tout, *eq1) << "eq2="; display_equation(tout, *eq2););
const nex_mul * ab = get_highest_monomial(eq1->exp());
const nex_mul * ac = get_highest_monomial(eq2->exp());
TRACE("grobner", tout << "ab=" << *ab << " , " << " ac = " << *ac << "\n";);
NOT_IMPLEMENTED_YET();
}