diff --git a/opm/simulators/utils/ParallelRestart.cpp b/opm/simulators/utils/ParallelRestart.cpp index 40aa6951c..76d086f62 100644 --- a/opm/simulators/utils/ParallelRestart.cpp +++ b/opm/simulators/utils/ParallelRestart.cpp @@ -311,7 +311,6 @@ HANDLE_AS_POD(Regdims) HANDLE_AS_POD(StandardCond) HANDLE_AS_POD(Tabdims) HANDLE_AS_POD(TimeStampUTC::YMD) -HANDLE_AS_POD(TlmixparRecord) HANDLE_AS_POD(Tuning) HANDLE_AS_POD(VISCREFRecord) HANDLE_AS_POD(WATDENTRecord) @@ -1202,11 +1201,6 @@ std::size_t packSize(const SolventDensityTable& data, return packSize(data.getSolventDensityColumn(), comm); } -std::size_t packSize(const TlmixparTable& data, Dune::MPIHelper::MPICommunicator comm) -{ - return packSize(static_cast&>(data), comm); -} - std::size_t packSize(const PlyvmhTable& data, Dune::MPIHelper::MPICommunicator comm) { return packSize(static_cast&>(data), comm); @@ -2360,12 +2354,6 @@ void pack(const SolventDensityTable& data, pack(data.getSolventDensityColumn(), buffer, position, comm); } -void pack(const TlmixparTable& data, std::vector& buffer, int& position, - Dune::MPIHelper::MPICommunicator comm) -{ - pack(static_cast&>(data), buffer, position, comm); -} - void pack(const PlyvmhTable& data, std::vector& buffer, int& position, Dune::MPIHelper::MPICommunicator comm) { @@ -3965,14 +3953,6 @@ void unpack(SolventDensityTable& data, std::vector& buffer, int& position, data = SolventDensityTable(tableValues); } -void unpack(TlmixparTable& data, std::vector& buffer, int& position, - Dune::MPIHelper::MPICommunicator comm) -{ - std::vector pdata; - unpack(pdata, buffer, position, comm); - data = TlmixparTable(pdata); -} - void unpack(PlyvmhTable& data, std::vector& buffer, int& position, Dune::MPIHelper::MPICommunicator comm) { diff --git a/opm/simulators/utils/ParallelRestart.hpp b/opm/simulators/utils/ParallelRestart.hpp index 0c3c41865..c5657245c 100644 --- a/opm/simulators/utils/ParallelRestart.hpp +++ b/opm/simulators/utils/ParallelRestart.hpp @@ -97,8 +97,6 @@ class TableContainer; class TableManager; class TableSchema; class TimeStampUTC; -class TlmixparRecord; -class TlmixparTable; class Tuning; class UDAValue; class UnitSystem; @@ -506,8 +504,6 @@ ADD_PACK_PROTOTYPES(TableManager) ADD_PACK_PROTOTYPES(TableSchema) ADD_PACK_PROTOTYPES(TimeMap) ADD_PACK_PROTOTYPES(TimeStampUTC) -ADD_PACK_PROTOTYPES(TlmixparRecord) -ADD_PACK_PROTOTYPES(TlmixparTable) ADD_PACK_PROTOTYPES(Tuning) ADD_PACK_PROTOTYPES(UDAValue) ADD_PACK_PROTOTYPES(UnitSystem)