avoid using deprecated type

This commit is contained in:
Arne Morten Kvarving 2024-07-03 07:58:07 +02:00
parent 48344facd4
commit 74cd10b1f2
3 changed files with 4 additions and 4 deletions

View File

@ -166,7 +166,7 @@ using BV = Dune::BlockVector<Dune::FieldVector<double,Dim>>;
#if HAVE_MPI
using CommunicationType = Dune::OwnerOverlapCopyCommunication<int,int>;
#else
using CommunicationType = Dune::CollectiveCommunication<int>;
using CommunicationType = Dune::Communication<int>;
#endif
#define INSTANCE_FLEX(Dim) \

View File

@ -162,7 +162,7 @@ std::unique_ptr<Matrix> blockJacobiAdjacency(const Grid& grid,
#if HAVE_MPI
using CommunicationType = Dune::OwnerOverlapCopyCommunication<int,int>;
#else
using CommunicationType = Dune::CollectiveCommunication<int>;
using CommunicationType = Dune::Communication<int>;
#endif
public:

View File

@ -150,7 +150,7 @@ public:
#if HAVE_MPI
using communication_type = Dune::OwnerOverlapCopyCommunication<int,int>;
#else
using communication_type = Dune::CollectiveCommunication<int>;
using communication_type = Dune::Communication<int>;
#endif
Dune::SolverCategory::Category category() const override
@ -244,7 +244,7 @@ public:
#if HAVE_MPI
using communication_type = Dune::OwnerOverlapCopyCommunication<int,int>;
#else
using communication_type = Dune::CollectiveCommunication<int>;
using communication_type = Dune::Communication<int>;
#endif
Dune::SolverCategory::Category category() const override