mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
avoid using deprecated type
This commit is contained in:
parent
48344facd4
commit
74cd10b1f2
@ -166,7 +166,7 @@ using BV = Dune::BlockVector<Dune::FieldVector<double,Dim>>;
|
|||||||
#if HAVE_MPI
|
#if HAVE_MPI
|
||||||
using CommunicationType = Dune::OwnerOverlapCopyCommunication<int,int>;
|
using CommunicationType = Dune::OwnerOverlapCopyCommunication<int,int>;
|
||||||
#else
|
#else
|
||||||
using CommunicationType = Dune::CollectiveCommunication<int>;
|
using CommunicationType = Dune::Communication<int>;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define INSTANCE_FLEX(Dim) \
|
#define INSTANCE_FLEX(Dim) \
|
||||||
|
@ -162,7 +162,7 @@ std::unique_ptr<Matrix> blockJacobiAdjacency(const Grid& grid,
|
|||||||
#if HAVE_MPI
|
#if HAVE_MPI
|
||||||
using CommunicationType = Dune::OwnerOverlapCopyCommunication<int,int>;
|
using CommunicationType = Dune::OwnerOverlapCopyCommunication<int,int>;
|
||||||
#else
|
#else
|
||||||
using CommunicationType = Dune::CollectiveCommunication<int>;
|
using CommunicationType = Dune::Communication<int>;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
@ -150,7 +150,7 @@ public:
|
|||||||
#if HAVE_MPI
|
#if HAVE_MPI
|
||||||
using communication_type = Dune::OwnerOverlapCopyCommunication<int,int>;
|
using communication_type = Dune::OwnerOverlapCopyCommunication<int,int>;
|
||||||
#else
|
#else
|
||||||
using communication_type = Dune::CollectiveCommunication<int>;
|
using communication_type = Dune::Communication<int>;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
Dune::SolverCategory::Category category() const override
|
Dune::SolverCategory::Category category() const override
|
||||||
@ -244,7 +244,7 @@ public:
|
|||||||
#if HAVE_MPI
|
#if HAVE_MPI
|
||||||
using communication_type = Dune::OwnerOverlapCopyCommunication<int,int>;
|
using communication_type = Dune::OwnerOverlapCopyCommunication<int,int>;
|
||||||
#else
|
#else
|
||||||
using communication_type = Dune::CollectiveCommunication<int>;
|
using communication_type = Dune::Communication<int>;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
Dune::SolverCategory::Category category() const override
|
Dune::SolverCategory::Category category() const override
|
||||||
|
Loading…
Reference in New Issue
Block a user