mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
cleanup
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
d7de7eb732
commit
e5ffc3cfae
|
@ -842,7 +842,7 @@ namespace lp {
|
|||
}
|
||||
|
||||
// returns true if a variable j is substituted
|
||||
bool is_substituted(unsigned j) const {
|
||||
bool can_substitute(unsigned j) const {
|
||||
return m_k2s.has_key(j);
|
||||
}
|
||||
|
||||
|
@ -894,7 +894,6 @@ namespace lp {
|
|||
}
|
||||
|
||||
SASSERT(is_in_sync());
|
||||
|
||||
m_added_terms.clear();
|
||||
SASSERT(entries_are_ok());
|
||||
}
|
||||
|
@ -1013,7 +1012,7 @@ namespace lp {
|
|||
if (m_indexed_work_vector[k].is_zero())
|
||||
return;
|
||||
const entry& e = entry_for_subs(k);
|
||||
SASSERT(is_substituted(k));
|
||||
SASSERT(can_substitute(k));
|
||||
TRACE("dioph_eq", tout << "k:" << k << ", in ";
|
||||
print_term_o(create_term_from_ind_c(), tout) << std::endl;
|
||||
tout << "subs with e:";
|
||||
|
@ -2000,6 +1999,7 @@ namespace lp {
|
|||
print_entry(fresh_row, tout) << std::endl;);
|
||||
SASSERT(entry_invariant(h));
|
||||
SASSERT(entry_invariant(fresh_row));
|
||||
SASSERT(is_fresh_var(xt));
|
||||
eliminate_var_in_f(fresh_row, k, 1);
|
||||
}
|
||||
|
||||
|
@ -2106,9 +2106,6 @@ namespace lp {
|
|||
bool is_fresh_var(unsigned j) const {
|
||||
return m_var_register.local_to_external(j) == UINT_MAX;
|
||||
}
|
||||
bool can_substitute(unsigned k) {
|
||||
return m_k2s.has_key(k);
|
||||
}
|
||||
|
||||
};
|
||||
// Constructor definition
|
||||
|
|
Loading…
Reference in a new issue