Merge pull request #5558 from akva2/janitoring

ISTLSolverBda: avoid using deprecated Dune::CollectiveCommunication
This commit is contained in:
Arne Morten Kvarving
2024-08-23 15:43:39 +02:00
committed by GitHub

View File

@@ -124,7 +124,7 @@ protected:
#if HAVE_MPI
using CommunicationType = Dune::OwnerOverlapCopyCommunication<int,int>;
#else
using CommunicationType = Dune::CollectiveCommunication<int>;
using CommunicationType = Dune::Communication<int>;
#endif
public: