From 763c250734f3fff0226e7e9b3b4775850143f9e5 Mon Sep 17 00:00:00 2001 From: Nikolaj Bjorner Date: Wed, 21 Feb 2018 22:33:44 +0900 Subject: [PATCH] try another build fix Signed-off-by: Nikolaj Bjorner --- src/util/lp/eta_matrix.h | 2 +- src/util/lp/sparse_matrix.h | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/util/lp/eta_matrix.h b/src/util/lp/eta_matrix.h index 89d2e641d..eee4a2674 100644 --- a/src/util/lp/eta_matrix.h +++ b/src/util/lp/eta_matrix.h @@ -83,7 +83,7 @@ public: void apply_from_right(vector & w) override; void apply_from_right(indexed_vector & w) override; - T get_elem(unsigned i, unsigned j) const override; + T get_elem(unsigned i, unsigned j) const; #ifdef Z3DEBUG unsigned row_count() const override { return m_length; } unsigned column_count() const override { return m_length; } diff --git a/src/util/lp/sparse_matrix.h b/src/util/lp/sparse_matrix.h index 400f2bfc0..7db526bdd 100644 --- a/src/util/lp/sparse_matrix.h +++ b/src/util/lp/sparse_matrix.h @@ -302,11 +302,11 @@ public: void solve_U_y_indexed_only(indexed_vector & y, const lp_settings&, vector & sorted_active_rows ); #ifdef Z3DEBUG - 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*/) { } + 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 { } #endif template L dot_product_with_row (unsigned row, const vector & y) const;