3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 01:24:08 +00:00

remove unnecessary assignments

This commit is contained in:
Lev Nachmanson 2023-12-18 18:49:27 -10:00
parent 1b7550483e
commit 9a18628b17

View file

@ -242,7 +242,6 @@ public:
// gomory will be t >= k and the current solution has a property t < k
m_k = 1;
m_t.clear();
mpq m_f = fractional_part(get_value(m_inf_col));
TRACE("gomory_cut_detail", tout << "m_f: " << m_f << ", ";
tout << "1 - m_f: " << 1 - m_f << ", get_value(m_inf_col).x - m_f = " << get_value(m_inf_col).x - m_f << "\n";);
lp_assert(m_f.is_pos() && (get_value(m_inf_col).x - m_f).is_int());
@ -257,7 +256,6 @@ public:
}
m_big_number = m_abs_max.expt(2);
#endif
mpq one_min_m_f = 1 - m_f;
for (const auto & p : m_row) {
unsigned j = p.var();
if (j == m_inf_col) {