mirror of
https://github.com/Z3Prover/z3
synced 2025-06-27 00:18:45 +00:00
try another build fix
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
24f56fd74c
commit
763c250734
2 changed files with 6 additions and 6 deletions
|
@ -83,7 +83,7 @@ public:
|
||||||
void apply_from_right(vector<T> & w) override;
|
void apply_from_right(vector<T> & w) override;
|
||||||
void apply_from_right(indexed_vector<T> & w) override;
|
void apply_from_right(indexed_vector<T> & w) override;
|
||||||
|
|
||||||
T get_elem(unsigned i, unsigned j) const override;
|
T get_elem(unsigned i, unsigned j) const;
|
||||||
#ifdef Z3DEBUG
|
#ifdef Z3DEBUG
|
||||||
unsigned row_count() const override { return m_length; }
|
unsigned row_count() const override { return m_length; }
|
||||||
unsigned column_count() const override { return m_length; }
|
unsigned column_count() const override { return m_length; }
|
||||||
|
|
|
@ -302,11 +302,11 @@ public:
|
||||||
void solve_U_y_indexed_only(indexed_vector<L> & y, const lp_settings&, vector<unsigned> & sorted_active_rows );
|
void solve_U_y_indexed_only(indexed_vector<L> & y, const lp_settings&, vector<unsigned> & sorted_active_rows );
|
||||||
|
|
||||||
#ifdef Z3DEBUG
|
#ifdef Z3DEBUG
|
||||||
T get_elem(unsigned i, unsigned j) const { return get(i, j); }
|
T get_elem(unsigned i, unsigned j) const override { return get(i, j); }
|
||||||
unsigned get_number_of_rows() const { return dimension(); }
|
unsigned get_number_of_rows() const override { return dimension(); }
|
||||||
unsigned get_number_of_columns() const { return dimension(); }
|
unsigned get_number_of_columns() const override { return dimension(); }
|
||||||
virtual void set_number_of_rows(unsigned /*m*/) { }
|
virtual void set_number_of_rows(unsigned /*m*/) override { }
|
||||||
virtual void set_number_of_columns(unsigned /*n*/) { }
|
virtual void set_number_of_columns(unsigned /*n*/) override { }
|
||||||
#endif
|
#endif
|
||||||
template <typename L>
|
template <typename L>
|
||||||
L dot_product_with_row (unsigned row, const vector<L> & y) const;
|
L dot_product_with_row (unsigned row, const vector<L> & y) const;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue