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

@@ -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