mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
revert is_all_int bugfix
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8fb36bd41d
commit
0d6220f383
1 changed files with 2 additions and 2 deletions
|
@ -476,10 +476,10 @@ namespace smt {
|
||||||
typename vector<row_entry>::const_iterator it = r.begin_entries();
|
typename vector<row_entry>::const_iterator it = r.begin_entries();
|
||||||
typename vector<row_entry>::const_iterator end = r.end_entries();
|
typename vector<row_entry>::const_iterator end = r.end_entries();
|
||||||
for (; it != end; ++it) {
|
for (; it != end; ++it) {
|
||||||
if (!it->is_dead() && !it->m_coeff.is_int()) {
|
if (!it->is_dead() && !it->m_coeff.is_int())
|
||||||
TRACE("gomory_cut", display_row(tout, r, true););
|
TRACE("gomory_cut", display_row(tout, r, true););
|
||||||
return false;
|
return false;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue