From 0b5c6c13ba7319c60a80e1f4c1314bc90750e9be Mon Sep 17 00:00:00 2001 From: Jonathan Youett <youett@math.fu-berlin.de> Date: Mon, 22 Jan 2018 11:38:21 +0100 Subject: [PATCH] Be consistent in using the typedefs --- dune/solvers/solvers/iterativesolver.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dune/solvers/solvers/iterativesolver.hh b/dune/solvers/solvers/iterativesolver.hh index 25400f7c..4c41de89 100644 --- a/dune/solvers/solvers/iterativesolver.hh +++ b/dune/solvers/solvers/iterativesolver.hh @@ -120,10 +120,10 @@ namespace Dune { protected: //! The iteration step used by the algorithm - std::shared_ptr<IterationStep<VectorType, BitVectorType> > iterationStep_; + std::shared_ptr<ItStep> iterationStep_; //! The norm used to measure convergence - std::shared_ptr<const Norm<VectorType> > errorNorm_; + std::shared_ptr<const ErrorNorm> errorNorm_; public: /** \brief If this string is nonempty it is expected to contain a valid -- GitLab