3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 03:15:50 +00:00

remove cheap equalities with the table

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2020-06-30 13:17:33 -07:00
parent e8690d28f8
commit b996bc1f02
4 changed files with 10 additions and 136 deletions

View file

@ -373,11 +373,7 @@ public:
}
template <typename T>
void calculate_cheap_eqs_for_row(unsigned i, lp_bound_propagator<T> & bp) {
if (settings().cheap_eqs() == 1) {
bp.cheap_eq_tree(i);
} else {
bp.cheap_eq_table(i);
}
bp.cheap_eq_tree(i);
}
bool is_fixed(column_index const& j) const { return column_is_fixed(j); }