Skip to content
Snippets Groups Projects
Commit 42f05581 authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[MaL] EigenMatrix adapted to new sparsity pattern

parent 10b54e0d
No related branches found
No related tags found
No related merge requests found
...@@ -197,13 +197,10 @@ void operator()(EigenMatrix &matrix, SPARSITY_PATTERN const& sparsity_pattern) ...@@ -197,13 +197,10 @@ void operator()(EigenMatrix &matrix, SPARSITY_PATTERN const& sparsity_pattern)
static_assert(EigenMatrix::RawMatrixType::IsRowMajor, static_assert(EigenMatrix::RawMatrixType::IsRowMajor,
"Set matrix sparsity relies on the EigenMatrix to be in " "Set matrix sparsity relies on the EigenMatrix to be in "
"row-major storage order."); "row-major storage order.");
auto const n_rows = matrix.getNRows();
Eigen::VectorXi row_sizes(n_rows);
for (auto i = decltype(n_rows){0}; i < n_rows; i++) assert(matrix.getNRows() == sparsity_pattern.size());
row_sizes[i] = sparsity_pattern.getNodeDegree(i);
matrix.getRawMatrix().reserve(row_sizes); matrix.getRawMatrix().reserve(sparsity_pattern);
} }
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment