mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
fix column patching
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
f45e17c47e
commit
6b01376f51
1 changed files with 1 additions and 1 deletions
|
@ -759,7 +759,7 @@ bool int_solver::get_freedom_interval_for_column(unsigned j, bool & inf_l, impq
|
|||
const mpq & a = c.coeff();
|
||||
unsigned i = lcs.m_r_basis[row_index];
|
||||
TRACE("random_update", tout << "i = " << i << ", a = " << a << "\n";);
|
||||
if (!a.is_int())
|
||||
if (column_is_int(i) && !a.is_int())
|
||||
m = lcm(m, denominator(a));
|
||||
}
|
||||
TRACE("random_update", tout << "m = " << m << "\n";);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue