From 31558c259dedc9f2773d58531f08349d7bc2113e Mon Sep 17 00:00:00 2001
From: podlesny <podlesny@zedat.fu-berlin.de>
Date: Tue, 20 Feb 2018 17:43:51 +0100
Subject: [PATCH] .

---
 .../preconditioners/levelglobalpreconditioner.hh             | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/dune/faultnetworks/preconditioners/levelglobalpreconditioner.hh b/dune/faultnetworks/preconditioners/levelglobalpreconditioner.hh
index ac9fd3f..2b7b4e2 100644
--- a/dune/faultnetworks/preconditioners/levelglobalpreconditioner.hh
+++ b/dune/faultnetworks/preconditioners/levelglobalpreconditioner.hh
@@ -7,7 +7,6 @@
 
 #include <dune/solvers/iterationsteps/lineariterationstep.hh>
 
-//#include <dune/istl/superlu.hh>
 #include <dune/istl/umfpack.hh>
 
 #include <dune/fufem/boundarypatch.hh>
@@ -116,7 +115,7 @@ public:
         this->x_->resize(matrix_.M());
         *(this->x_) = 0;
 
-        #if HAVE_SUPERLU
+        #if HAVE_UMFPACK
         Dune::InverseOperatorResult res;
         VectorType rhsCopy(rhs_);
 
@@ -124,7 +123,7 @@ public:
         solver.apply(*(this->x_), rhsCopy, res);
 
         #else
-        #error No SuperLU!
+        #error No UMFPack!
         #endif
 
         //std::cout << "LevelGlobalPreconditioner::iterate() Solving global problem took: " << timer.elapsed() << " seconds" << std::endl;
-- 
GitLab