Skip to content
Snippets Groups Projects
Commit ec781f5d authored by Leo Schmidt's avatar Leo Schmidt Committed by lschmidt@PCPOOL.MI.FU-BERLIN.DE
Browse files

erstes template-Argument von IterativeSolver entfernt

[[Imported from SVN: r2197]]
parent a7637d09
No related branches found
No related tags found
No related merge requests found
......@@ -104,8 +104,8 @@ void RodSolver<GridType>::setup(const GridType& grid,
EnergyNorm<MatrixType, CorrectionType>* baseEnergyNorm = new EnergyNorm<MatrixType, CorrectionType>(*baseSolverStep);
IterativeSolver<MatrixType, CorrectionType>* baseSolver
= new IterativeSolver<MatrixType, CorrectionType>(baseSolverStep,
IterativeSolver<CorrectionType>* baseSolver
= new IterativeSolver<CorrectionType>(baseSolverStep,
baseIt_,
baseTolerance_,
baseEnergyNorm,
......@@ -142,11 +142,11 @@ void RodSolver<GridType>::setup(const GridType& grid,
h1SemiNorm_ = new H1SemiNorm<CorrectionType>(**A);
mmgSolver_ = new IterativeSolver<MatrixType, CorrectionType>(mmgStep,
multigridIterations_,
qpTolerance_,
h1SemiNorm_,
Solver::QUIET);
mmgSolver_ = new IterativeSolver<CorrectionType>(mmgStep,
multigridIterations_,
qpTolerance_,
h1SemiNorm_,
Solver::QUIET);
// Write all intermediate solutions, if requested
if (instrumented_)
......
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