mirror of
https://github.com/Z3Prover/z3
synced 2025-06-22 13:53:39 +00:00
fix more warnings with override
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
919989cfe8
commit
6ed95718ce
2 changed files with 10 additions and 10 deletions
|
@ -79,11 +79,11 @@ public:
|
||||||
|
|
||||||
void conjugate_by_permutation(permutation_matrix<T, X> & p);
|
void conjugate_by_permutation(permutation_matrix<T, X> & p);
|
||||||
#ifdef Z3DEBUG
|
#ifdef Z3DEBUG
|
||||||
T get_elem(unsigned row, unsigned col) const;
|
T get_elem(unsigned row, unsigned col) const override;
|
||||||
unsigned row_count() const { return m_dimension; }
|
unsigned row_count() const override { return m_dimension; }
|
||||||
unsigned column_count() const { return m_dimension; }
|
unsigned column_count() const override { return m_dimension; }
|
||||||
void set_number_of_rows(unsigned m) { m_dimension = m; }
|
void set_number_of_rows(unsigned m) override { m_dimension = m; }
|
||||||
void set_number_of_columns(unsigned n) { m_dimension = n; }
|
void set_number_of_columns(unsigned n) override { m_dimension = n; }
|
||||||
#endif
|
#endif
|
||||||
}; // end of row_eta_matrix
|
}; // end of row_eta_matrix
|
||||||
}
|
}
|
||||||
|
|
|
@ -214,11 +214,11 @@ public:
|
||||||
void apply_from_right(vector<T> & w) override;
|
void apply_from_right(vector<T> & w) override;
|
||||||
|
|
||||||
#ifdef Z3DEBUG
|
#ifdef Z3DEBUG
|
||||||
T get_elem (unsigned i, unsigned j) const;
|
T get_elem (unsigned i, unsigned j) const override;
|
||||||
unsigned row_count() const { return m_parent->row_count();}
|
unsigned row_count() const override { return m_parent->row_count();}
|
||||||
unsigned column_count() const { return row_count();}
|
unsigned column_count() const override { return row_count();}
|
||||||
void set_number_of_rows(unsigned) {}
|
void set_number_of_rows(unsigned) override {}
|
||||||
void set_number_of_columns(unsigned) {};
|
void set_number_of_columns(unsigned) override {}
|
||||||
#endif
|
#endif
|
||||||
void conjugate_by_permutation(permutation_matrix<T, X> & q);
|
void conjugate_by_permutation(permutation_matrix<T, X> & q);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue