From 65fc2424ee7c155fa65c40ee6a79ee1be7ef0ac2 Mon Sep 17 00:00:00 2001 From: Markus Blatt <markus@dr-blatt.de> Date: Wed, 4 Jun 2014 16:37:12 +0000 Subject: [PATCH] Fixed template parameters of BlockPreconditioner. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/branches/strip-pdelab@12947 2fb0f335-1f38-0410-981e-8018bf24f1b0 --- dumux/linear/amgproperties.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dumux/linear/amgproperties.hh b/dumux/linear/amgproperties.hh index b6e692098f..441e24fb50 100644 --- a/dumux/linear/amgproperties.hh +++ b/dumux/linear/amgproperties.hh @@ -131,7 +131,7 @@ SET_PROP(CCModel, AMGPDELabBackend) typedef Dune::OwnerOverlapCopyCommunication<Dune::bigunsignedint<96>,int> Comm; typedef Dune::OverlappingSchwarzOperator<MType,VType, VType,Comm> LinearOperator; typedef Dune::OverlappingSchwarzScalarProduct<VType,Comm> ScalarProduct; - typedef Dune::BlockPreconditioner<MType,VType,Comm,Dune::SeqSSOR<MType,VType, VType> > Smoother; + typedef Dune::BlockPreconditioner<VType,VType,Comm,Dune::SeqSSOR<MType,VType, VType> > Smoother; #else typedef Dune::Amg::SequentialInformation Comm; typedef Dune::MatrixAdapter<MType,VType,VType> LinearOperator; @@ -157,7 +157,7 @@ SET_PROP(DecoupledModel, AMGPDELabBackend) typedef Dune::OwnerOverlapCopyCommunication<Dune::bigunsignedint<96>,int> Comm; typedef Dune::OverlappingSchwarzOperator<MType,VType, VType,Comm> LinearOperator; typedef Dune::OverlappingSchwarzScalarProduct<VType,Comm> ScalarProduct; - typedef Dune::BlockPreconditioner<MType,VType,Comm,Dune::SeqSSOR<MType,VType, VType> > Smoother; + typedef Dune::BlockPreconditioner<VType,VType,Comm,Dune::SeqSSOR<MType,VType, VType> > Smoother; #else typedef Dune::Amg::SequentialInformation Comm; typedef Dune::MatrixAdapter<MType,VType,VType> LinearOperator; -- GitLab