Skip to content
Snippets Groups Projects
Commit 49e78fa1 authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

Merge branch 'bugfix/colcompmatrix_wrong_nr_cilums' into 'master'

[bugfix] fix number of columns for non-scalar matrix blocks



See merge request !44
parents 739d9649 f648c23f
No related branches found
No related tags found
1 merge request!44[bugfix] fix number of columns for non-scalar matrix blocks
Pipeline #
......@@ -298,7 +298,7 @@ namespace Dune
template<class T, class A, int n, int m>
ColCompMatrixInitializer<BCRSMatrix<FieldMatrix<T,n,m>,A> >::ColCompMatrixInitializer(ColCompMatrix& mat_)
: mat(&mat_), cols(mat_.N()), marker(0)
: mat(&mat_), cols(mat_.M()), marker(0)
{
mat->Nnz_=0;
}
......
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