mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 21:08:46 +00:00
fix term_is_int
Signed-off-by: Lev Nachmanson <levnach@microsoft.com>
This commit is contained in:
parent
77171f4af8
commit
729644a2b6
|
@ -1413,7 +1413,7 @@ bool lar_solver::model_is_int_feasible() const {
|
|||
|
||||
bool lar_solver::term_is_int(const lar_term * t) const {
|
||||
for (auto const & p : t->m_coeffs)
|
||||
if (!column_is_int(p.first) || p.second.is_int())
|
||||
if (! (column_is_int(p.first) && p.second.is_int()))
|
||||
return false;
|
||||
return t->m_v.is_int();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue