3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-19 19:02:02 +00:00

more efficient column_is_fixed

This commit is contained in:
Lev Nachmanson 2023-08-05 13:40:35 -10:00 committed by Lev Nachmanson
parent 0fbf8f92f5
commit 858eebca82
3 changed files with 9 additions and 7 deletions

View file

@ -489,6 +489,7 @@ class lar_solver : public column_namer {
void updt_params(params_ref const& p);
column_type get_column_type(unsigned j) const { return m_mpq_lar_core_solver.m_column_types()[j]; }
const vector<column_type>& get_column_types() const { return m_mpq_lar_core_solver.m_column_types(); }
const impq& get_lower_bound(unsigned j) const { return m_mpq_lar_core_solver.m_r_lower_bounds()[j]; }
const impq& get_upper_bound(unsigned j) const { return m_mpq_lar_core_solver.m_r_upper_bounds()[j]; }
std::ostream& print_terms(std::ostream& out) const;