3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 12:28:44 +00:00

Merge pull request #1756 from levnach/bugfix

fix in cube heuristic
This commit is contained in:
Lev Nachmanson 2018-07-16 14:17:39 -07:00 committed by GitHub
commit 84c1e00355
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2209,7 +2209,7 @@ void lar_solver::round_to_integer_solution() {
fill_vars_to_terms(vars_to_terms);
for (unsigned j = 0; j < column_count(); j++) {
if (column_is_int(j)) continue;
if (!column_is_int(j)) continue;
if (column_corresponds_to_term(j)) continue;
TRACE("cube", m_int_solver->display_column(tout, j););
impq& v = m_mpq_lar_core_solver.m_r_x[j];