Skip to content
Snippets Groups Projects
Commit f8f4356a authored by graeser's avatar graeser
Browse files

Merge branch 'feature/fix-multitype-matrixbuilder' into 'master'

[bugfix] Fix row and col size in MatrixBuilder<MultiTypeMatrix<...>>

See merge request !101
parents f1180a1b c82ca486
No related branches found
No related tags found
1 merge request!101[bugfix] Fix row and col size in MatrixBuilder<MultiTypeMatrix<...>>
Pipeline #40720 passed
......@@ -184,7 +184,7 @@ private:
//! number of multi type cols (we assume the matrix is well-formed)
static constexpr size_t colBlocks_ = Matrix::M();
//! 2D array of IndexSets
std::array<std::array<Dune::MatrixIndexSet,rowBlocks_>,colBlocks_> indices_;
std::array<std::array<Dune::MatrixIndexSet,colBlocks_>,rowBlocks_> indices_;
Matrix& matrix_;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment