Skip to content
Snippets Groups Projects
Commit 31558c25 authored by podlesny's avatar podlesny
Browse files

.

parent fac514c5
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,6 @@ ...@@ -7,7 +7,6 @@
#include <dune/solvers/iterationsteps/lineariterationstep.hh> #include <dune/solvers/iterationsteps/lineariterationstep.hh>
//#include <dune/istl/superlu.hh>
#include <dune/istl/umfpack.hh> #include <dune/istl/umfpack.hh>
#include <dune/fufem/boundarypatch.hh> #include <dune/fufem/boundarypatch.hh>
...@@ -116,7 +115,7 @@ public: ...@@ -116,7 +115,7 @@ public:
this->x_->resize(matrix_.M()); this->x_->resize(matrix_.M());
*(this->x_) = 0; *(this->x_) = 0;
#if HAVE_SUPERLU #if HAVE_UMFPACK
Dune::InverseOperatorResult res; Dune::InverseOperatorResult res;
VectorType rhsCopy(rhs_); VectorType rhsCopy(rhs_);
...@@ -124,7 +123,7 @@ public: ...@@ -124,7 +123,7 @@ public:
solver.apply(*(this->x_), rhsCopy, res); solver.apply(*(this->x_), rhsCopy, res);
#else #else
#error No SuperLU! #error No UMFPack!
#endif #endif
//std::cout << "LevelGlobalPreconditioner::iterate() Solving global problem took: " << timer.elapsed() << " seconds" << std::endl; //std::cout << "LevelGlobalPreconditioner::iterate() Solving global problem took: " << timer.elapsed() << " seconds" << std::endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment