3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-19 19:02:02 +00:00

no special treatment for NE

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-03-01 18:34:05 -10:00
parent 34262ae02c
commit 6637747fd9

View file

@ -508,12 +508,7 @@ struct solver::imp {
} }
void mk_ineq(lp::lar_term& t, llc cmp, const rational& rs, lemma& l) { void mk_ineq(lp::lar_term& t, llc cmp, const rational& rs, lemma& l) {
if (cmp == llc::NE) { TRACE("nla_solver_details", m_lar_solver.print_term(t, tout << "t = "););
mk_ineq(t, llc::LT, rs, l);
mk_ineq(t, llc::GT, rs, l);
return;
}
TRACE("nla_solver_details", m_lar_solver.print_term(t, tout << "t = "););
if (explain_ineq(t, cmp, rs)) { if (explain_ineq(t, cmp, rs)) {
return; return;
} }