add mpi serialization for WellSegmentDims

This commit is contained in:
Arne Morten Kvarving 2019-12-02 12:08:16 +01:00
parent 7989fb89d4
commit 0bf43fc516
3 changed files with 14 additions and 0 deletions

View File

@ -209,6 +209,7 @@ HANDLE_AS_POD(RestartSchedule)
HANDLE_AS_POD(Tabdims) HANDLE_AS_POD(Tabdims)
HANDLE_AS_POD(TimeMap::StepData) HANDLE_AS_POD(TimeMap::StepData)
HANDLE_AS_POD(Welldims) HANDLE_AS_POD(Welldims)
HANDLE_AS_POD(WellSegmentDims)
std::size_t packSize(const data::Well& data, Dune::MPIHelper::MPICommunicator comm) std::size_t packSize(const data::Well& data, Dune::MPIHelper::MPICommunicator comm)
{ {

View File

@ -63,6 +63,7 @@ class TableContainer;
class TableSchema; class TableSchema;
class ThresholdPressure; class ThresholdPressure;
class Welldims; class Welldims;
class WellSegmentDims;
namespace Mpi namespace Mpi
{ {
@ -274,6 +275,7 @@ ADD_PACK_PROTOTYPES(ThresholdPressure)
ADD_PACK_PROTOTYPES(TimeMap) ADD_PACK_PROTOTYPES(TimeMap)
ADD_PACK_PROTOTYPES(TimeMap::StepData) ADD_PACK_PROTOTYPES(TimeMap::StepData)
ADD_PACK_PROTOTYPES(Welldims) ADD_PACK_PROTOTYPES(Welldims)
ADD_PACK_PROTOTYPES(WellSegmentDims)
} // end namespace Mpi } // end namespace Mpi
RestartValue loadParallelRestart(const EclipseIO* eclIO, SummaryState& summaryState, RestartValue loadParallelRestart(const EclipseIO* eclIO, SummaryState& summaryState,

View File

@ -593,6 +593,17 @@ BOOST_AUTO_TEST_CASE(Welldims)
} }
BOOST_AUTO_TEST_CASE(WellSegmentDims)
{
#if HAVE_MPI
Opm::WellSegmentDims val1(1,2,3);
auto val2 = PackUnpack(val1);
BOOST_CHECK(std::get<1>(val2) == std::get<2>(val2));
BOOST_CHECK(val1 == std::get<0>(val2));
#endif
}
bool init_unit_test_func() bool init_unit_test_func()
{ {
return true; return true;