From db96266e874d1e1d706bebc8ac270f3e99fc1639 Mon Sep 17 00:00:00 2001 From: Bernd Flemisch <bernd@iws.uni-stuttgart.de> Date: Thu, 12 May 2011 13:27:18 +0000 Subject: [PATCH] fixed names for sequential solver backends git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@5806 2fb0f335-1f38-0410-981e-8018bf24f1b0 --- dumux/linear/seqsolverbackend.hh | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/dumux/linear/seqsolverbackend.hh b/dumux/linear/seqsolverbackend.hh index e8fb037851..fe1f9aa213 100644 --- a/dumux/linear/seqsolverbackend.hh +++ b/dumux/linear/seqsolverbackend.hh @@ -121,11 +121,11 @@ private: }; template <class TypeTag> -class IterartivPreCondSolverBackend +class IterativePrecondSolverBackend { public: - IterartivPreCondSolverBackend() + IterativePrecondSolverBackend() {} template<class Preconditioner, class Solver, class Matrix, class Vector> @@ -160,10 +160,10 @@ private: }; template <class TypeTag> -class ILUnBiCGSTABBackend: public IterartivPreCondSolverBackend<TypeTag> +class ILUnBiCGSTABBackend: public IterativePrecondSolverBackend<TypeTag> { typedef typename GET_PROP_TYPE(TypeTag, PTAG(Problem)) Problem; - typedef IterartivPreCondSolverBackend<TypeTag> ParentType; + typedef IterativePrecondSolverBackend<TypeTag> ParentType; public: ILUnBiCGSTABBackend(Problem& problem) @@ -180,10 +180,10 @@ public: }; template <class TypeTag> -class SORBiCGSTABBackend: public IterartivPreCondSolverBackend<TypeTag> +class SORBiCGSTABBackend: public IterativePrecondSolverBackend<TypeTag> { typedef typename GET_PROP_TYPE(TypeTag, PTAG(Problem)) Problem; - typedef IterartivPreCondSolverBackend<TypeTag> ParentType; + typedef IterativePrecondSolverBackend<TypeTag> ParentType; public: SORBiCGSTABBackend(Problem& problem) @@ -200,10 +200,10 @@ public: }; template <class TypeTag> -class SSORBiCGSTABBackend: public IterartivPreCondSolverBackend<TypeTag> +class SSORBiCGSTABBackend: public IterativePrecondSolverBackend<TypeTag> { typedef typename GET_PROP_TYPE(TypeTag, PTAG(Problem)) Problem; - typedef IterartivPreCondSolverBackend<TypeTag> ParentType; + typedef IterativePrecondSolverBackend<TypeTag> ParentType; public: SSORBiCGSTABBackend(Problem& problem) @@ -220,10 +220,10 @@ public: }; template <class TypeTag> -class GSBiCGSTABBackend: public IterartivPreCondSolverBackend<TypeTag> +class GSBiCGSTABBackend: public IterativePrecondSolverBackend<TypeTag> { typedef typename GET_PROP_TYPE(TypeTag, PTAG(Problem)) Problem; - typedef IterartivPreCondSolverBackend<TypeTag> ParentType; + typedef IterativePrecondSolverBackend<TypeTag> ParentType; public: GSBiCGSTABBackend(Problem& problem) @@ -240,13 +240,13 @@ public: }; template <class TypeTag> -class JACBiCGSTABBackend: public IterartivPreCondSolverBackend<TypeTag> +class JacBiCGSTABBackend: public IterativePrecondSolverBackend<TypeTag> { typedef typename GET_PROP_TYPE(TypeTag, PTAG(Problem)) Problem; - typedef IterartivPreCondSolverBackend<TypeTag> ParentType; + typedef IterativePrecondSolverBackend<TypeTag> ParentType; public: - JACBiCGSTABBackend(Problem& problem) + JacBiCGSTABBackend(Problem& problem) {} template<class Matrix, class Vector> -- GitLab