mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 18:31:49 +00:00
try another build fix
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
763c250734
commit
d70ee71a43
|
@ -302,11 +302,11 @@ public:
|
|||
void solve_U_y_indexed_only(indexed_vector<L> & y, const lp_settings&, vector<unsigned> & sorted_active_rows );
|
||||
|
||||
#ifdef Z3DEBUG
|
||||
T get_elem(unsigned i, unsigned j) const override { return get(i, j); }
|
||||
unsigned get_number_of_rows() const override { return dimension(); }
|
||||
unsigned get_number_of_columns() const override { return dimension(); }
|
||||
virtual void set_number_of_rows(unsigned /*m*/) override { }
|
||||
virtual void set_number_of_columns(unsigned /*n*/) override { }
|
||||
T get_elem(unsigned i, unsigned j) const { return get(i, j); }
|
||||
unsigned get_number_of_rows() const { return dimension(); }
|
||||
unsigned get_number_of_columns() const { return dimension(); }
|
||||
virtual void set_number_of_rows(unsigned /*m*/) { }
|
||||
virtual void set_number_of_columns(unsigned /*n*/) { }
|
||||
#endif
|
||||
template <typename L>
|
||||
L dot_product_with_row (unsigned row, const vector<L> & y) const;
|
||||
|
|
Loading…
Reference in a new issue