Skip to content
Snippets Groups Projects
Commit 015098b8 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

[Cleanup] No need for truncation

parent a845c2b1
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@
#include <dune/fufem/functionspacebases/p0basis.hh>
#include <dune/fufem/functionspacebases/p1nodalbasis.hh>
#include <dune/fufem/sharedpointermap.hh>
#include <dune/solvers/iterationsteps/truncatedblockgsstep.hh>
#include <dune/solvers/iterationsteps/blockgsstep.hh>
#include <dune/solvers/norms/energynorm.hh>
#include <dune/solvers/norms/sumnorm.hh>
#include <dune/solvers/solvers/loopsolver.hh>
......@@ -368,7 +368,7 @@ int main(int argc, char *argv[]) {
problem_rhs_initial -= ell;
problem_rhs_initial *= -1.0;
}
TruncatedBlockGSStep<MatrixType, VectorType> accelerationSolverStep(
BlockGSStep<MatrixType, VectorType> accelerationSolverStep(
massMatrix, a_initial, problem_rhs_initial);
accelerationSolverStep.ignoreNodes_ = &ignoreNodes;
LoopSolver<VectorType> accelerationSolver(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment