From b7c913f3f85185700f9f3d3c77fb04490f6b7bbf Mon Sep 17 00:00:00 2001 From: Timo Koch <timo.koch@iws.uni-stuttgart.de> Date: Tue, 7 Apr 2020 14:26:11 +0200 Subject: [PATCH] [pdesolver] Use more conside notation for checkmatrix size --- dumux/common/pdesolver.hh | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/dumux/common/pdesolver.hh b/dumux/common/pdesolver.hh index e06c5cc4c9..c86d1f5ed7 100644 --- a/dumux/common/pdesolver.hh +++ b/dumux/common/pdesolver.hh @@ -109,15 +109,12 @@ protected: bool checkSizesOfSubMatrices(const M& A) const { static_assert(isMultiTypeBlockMatrix<M>::value, "This function can only be used with MultiTypeBlockMatrix"); + bool matrixHasCorrectSize = true; using namespace Dune::Hybrid; - using namespace Dune::Indices; - forEach(A, [&matrixHasCorrectSize](const auto& rowOfMultiTypeBlockMatrix) - { - const auto numRowsLeftMostBlock = rowOfMultiTypeBlockMatrix[_0].N(); - - forEach(rowOfMultiTypeBlockMatrix, [&matrixHasCorrectSize, &numRowsLeftMostBlock](const auto& subBlock) - { + forEach(A, [&](const auto& row){ + const auto numRowsLeftMostBlock = row[Dune::index_constant<0>{}].N(); + forEach(row, [&](const auto& subBlock){ if (subBlock.N() != numRowsLeftMostBlock) matrixHasCorrectSize = false; }); -- GitLab