From 8ff9bf13bf1aa3aae481f3d4c167f248e6c7a138 Mon Sep 17 00:00:00 2001 From: Timo Koch <timo.koch@iws.uni-stuttgart.de> Date: Tue, 25 Jun 2019 14:04:35 +0200 Subject: [PATCH] [mpfa][fix] Use correct type for data member --- .../cellcentered/mpfa/interactionvolumedatahandle.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dumux/discretization/cellcentered/mpfa/interactionvolumedatahandle.hh b/dumux/discretization/cellcentered/mpfa/interactionvolumedatahandle.hh index 7850e23bd1..27b585aa11 100644 --- a/dumux/discretization/cellcentered/mpfa/interactionvolumedatahandle.hh +++ b/dumux/discretization/cellcentered/mpfa/interactionvolumedatahandle.hh @@ -100,7 +100,7 @@ protected: std::array< std::array<TMatrix, size2>, size1 > T_; //!< The transmissibility matrix std::array< std::array<AMatrix, size2>, size1 > A_; //!< Inverse of the iv-local system matrix - std::array< std::array<CMatrix, size2>, size1 > AB_; //!< A_ left multiplied to B + std::array< std::array<BMatrix, size2>, size1 > AB_; //!< A_ left multiplied to B std::array< std::array<CMatrix, size2>, size1 > CA_; //!< A_ right multiplied to C std::array< std::array<OutsideTij, size2>, size1 > tijOutside_; //!< The transmissibilities for "outside" faces (on surface grids) }; -- GitLab