remove old serialization support for WellBrineProperties

This commit is contained in:
Arne Morten Kvarving 2020-03-18 09:29:02 +01:00
parent 8a0959b026
commit 2e34b91b53
3 changed files with 1 additions and 3 deletions

View File

@ -261,7 +261,6 @@ HANDLE_AS_POD(data::Connection)
HANDLE_AS_POD(data::CurrentControl)
HANDLE_AS_POD(data::Rates)
HANDLE_AS_POD(data::Segment)
HANDLE_AS_POD(WellBrineProperties)
std::size_t packSize(const data::Well& data, Dune::MPIHelper::MPICommunicator comm)
{

View File

@ -391,7 +391,6 @@ ADD_PACK_PROTOTYPES(Well)
ADD_PACK_PROTOTYPES(WellType)
ADD_PACK_PROTOTYPES(Well::WellInjectionProperties)
ADD_PACK_PROTOTYPES(Well::WellProductionProperties)
ADD_PACK_PROTOTYPES(WellBrineProperties)
ADD_PACK_PROTOTYPES(WellConnections)
ADD_PACK_PROTOTYPES(WellSegments)
ADD_PACK_PROTOTYPES(WellTracerProperties)

View File

@ -2223,7 +2223,7 @@ BOOST_AUTO_TEST_CASE(WellBrineProperties)
{
#ifdef HAVE_MPI
Opm::WellBrineProperties val1{1.0};
auto val2 = PackUnpack(val1);
auto val2 = PackUnpack2(val1);
DO_CHECKS(WellBrineProperties)
#endif
}