3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-30 12:25:51 +00:00

rm lp_solver

This commit is contained in:
Lev Nachmanson 2023-03-03 16:32:49 -08:00
parent 5e4bca3d26
commit ff1dc0424c
8 changed files with 2 additions and 929 deletions

View file

@ -43,15 +43,4 @@ public:
m_value = val;
}
};
#ifdef Z3DEBUG
template <typename X>
bool check_vector_for_small_values(indexed_vector<X> & w, lp_settings & settings) {
for (unsigned i : w.m_index) {
const X & v = w[i];
if ((!is_zero(v)) && settings.abs_val_is_smaller_than_drop_tolerance(v))
return false;
}
return true;
}
#endif
}