From 9fef8dcfb45da30ef59187d5ae6cd4040ecace42 Mon Sep 17 00:00:00 2001 From: DennisGlaeser <dennis.glaeser@iws.uni-stuttgart.de> Date: Wed, 25 Oct 2017 14:11:42 +0200 Subject: [PATCH] [AMG] fix bug in constructor --- dumux/linear/amgbackend.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dumux/linear/amgbackend.hh b/dumux/linear/amgbackend.hh index 5605fcd0c1..01cf1e44cf 100644 --- a/dumux/linear/amgbackend.hh +++ b/dumux/linear/amgbackend.hh @@ -98,7 +98,7 @@ public: AMGBackend(const GridView& gridView, const DofMapper& dofMapper) : gridView_(gridView) , dofMapper_(dofMapper) - , phelper_(gridView, mapper) + , phelper_(gridView, dofMapper) , firstCall_(true) {} -- GitLab