From 51b8ce9b67d81e4ee74983e7088919133cf68e7e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Carsten=20Gr=C3=A4ser?= <graeser@dune-project.org>
Date: Fri, 11 Mar 2016 12:23:16 +0100
Subject: [PATCH] [test][amg] Also check FastAMG::recalculateHierarchy()

This additional check currently fails.
---
 dune/istl/paamg/test/fastamg.cc | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dune/istl/paamg/test/fastamg.cc b/dune/istl/paamg/test/fastamg.cc
index 0af74fe6..5ca19a89 100644
--- a/dune/istl/paamg/test/fastamg.cc
+++ b/dune/istl/paamg/test/fastamg.cc
@@ -81,6 +81,9 @@ void testAMG(int N, int coarsenTarget, int ml)
 
   AMG amg(fop, criterion, parms);
 
+  // check if recalculation of matrix hierarchy works
+  amg.recalculateHierarchy();
+
   double buildtime = watch.elapsed();
 
   std::cout<<"Building hierarchy took "<<buildtime<<" seconds"<<std::endl;
-- 
GitLab