mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
fix build warnings part 6
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f176e1e5e5
commit
49d2b86d35
6 changed files with 56 additions and 55 deletions
|
@ -36,12 +36,12 @@ void sparse_matrix<T, X>::copy_B(static_matrix<T, X> const &A, vector<unsigned>
|
|||
// constructor that copies columns of the basis from A
|
||||
template <typename T, typename X>
|
||||
sparse_matrix<T, X>::sparse_matrix(static_matrix<T, X> const &A, vector<unsigned> & basis) :
|
||||
m_n_of_active_elems(0),
|
||||
m_pivot_queue(A.row_count()),
|
||||
m_row_permutation(A.row_count()),
|
||||
m_column_permutation(A.row_count()),
|
||||
m_work_pivot_vector(A.row_count(), -1),
|
||||
m_processed(A.row_count()),
|
||||
m_n_of_active_elems(0) {
|
||||
m_processed(A.row_count()) {
|
||||
init_row_headers();
|
||||
init_column_headers();
|
||||
copy_B(A, basis);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue