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
commit c0197625fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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: