mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
bug fix
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
0b1e923d2a
commit
be8f3e9c3e
|
@ -258,7 +258,8 @@ namespace lp {
|
||||||
return lia_move::conflict;
|
return lia_move::conflict;
|
||||||
rewrite_eqs();
|
rewrite_eqs();
|
||||||
}
|
}
|
||||||
TRACE("dioph_eq", print_S(tout););
|
TRACE("dioph_eq", print_S(tout););
|
||||||
|
NOT_IMPLEMENTED_YET();
|
||||||
return lia_move::sat;
|
return lia_move::sat;
|
||||||
}
|
}
|
||||||
std::list<unsigned>::iterator pick_eh() {
|
std::list<unsigned>::iterator pick_eh() {
|
||||||
|
@ -282,7 +283,7 @@ namespace lp {
|
||||||
TRACE("dioph_eq", print_eprime_entry(e_index, tout << "before:") << std::endl;
|
TRACE("dioph_eq", print_eprime_entry(e_index, tout << "before:") << std::endl;
|
||||||
tout << "k_coeff:" << k_coeff << std::endl;);
|
tout << "k_coeff:" << k_coeff << std::endl;);
|
||||||
if (!l_term.is_empty()) {
|
if (!l_term.is_empty()) {
|
||||||
add_operator(m_eprime[e_index].m_l, -k_coeff, l_term);
|
add_operator(m_eprime[e_index].m_l, -k_sign*k_coeff, l_term);
|
||||||
}
|
}
|
||||||
e.substitute(k_subst, k);
|
e.substitute(k_subst, k);
|
||||||
TRACE("dioph_eq", print_eprime_entry(e_index, tout << "after :") << std::endl;);
|
TRACE("dioph_eq", print_eprime_entry(e_index, tout << "after :") << std::endl;);
|
||||||
|
|
Loading…
Reference in a new issue