diff --git a/dune/faultnetworks/preconditioners/levelglobalpreconditioner.hh b/dune/faultnetworks/preconditioners/levelglobalpreconditioner.hh index ac9fd3fce63579595d9e64d29c2e9e69c1d6b63d..2b7b4e2bb80f6ad5ec302097654dbb5bc320deb4 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;