mirror of
https://github.com/Z3Prover/z3
synced 2026-02-20 07:24:40 +00:00
small changes
Signed-off-by: Lev <levnach@hotmail.com>
This commit is contained in:
parent
9407c4e96f
commit
fde1cd23d5
5 changed files with 14 additions and 8 deletions
|
|
@ -619,6 +619,7 @@ bool int_solver::ext_gcd_test(const row_strip<mpq> & row,
|
|||
mpq const & least_coeff,
|
||||
mpq const & lcm_den,
|
||||
mpq const & consts) {
|
||||
TRACE("ext_gcd_test", tout << "row = "; m_lar_solver->print_row(row, tout););
|
||||
mpq gcds(0);
|
||||
mpq l(consts);
|
||||
mpq u(consts);
|
||||
|
|
@ -627,6 +628,7 @@ bool int_solver::ext_gcd_test(const row_strip<mpq> & row,
|
|||
unsigned j;
|
||||
for (const auto & c : row) {
|
||||
j = c.var();
|
||||
TRACE("ext_gcd_test", tout << "col = "; m_lar_solver->m_mpq_lar_core_solver.m_r_solver.print_column_bound_info(j, tout););
|
||||
const mpq & a = c.coeff();
|
||||
if (m_lar_solver->column_is_fixed(j))
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue