remove old serialization support for TlmixparTable

This commit is contained in:
Arne Morten Kvarving 2020-03-17 10:07:46 +01:00
parent 1f952e214c
commit b1b3223f83
2 changed files with 0 additions and 24 deletions

View File

@ -311,7 +311,6 @@ HANDLE_AS_POD(Regdims)
HANDLE_AS_POD(StandardCond) HANDLE_AS_POD(StandardCond)
HANDLE_AS_POD(Tabdims) HANDLE_AS_POD(Tabdims)
HANDLE_AS_POD(TimeStampUTC::YMD) HANDLE_AS_POD(TimeStampUTC::YMD)
HANDLE_AS_POD(TlmixparRecord)
HANDLE_AS_POD(Tuning) HANDLE_AS_POD(Tuning)
HANDLE_AS_POD(VISCREFRecord) HANDLE_AS_POD(VISCREFRecord)
HANDLE_AS_POD(WATDENTRecord) HANDLE_AS_POD(WATDENTRecord)
@ -1202,11 +1201,6 @@ std::size_t packSize(const SolventDensityTable& data,
return packSize(data.getSolventDensityColumn(), comm); return packSize(data.getSolventDensityColumn(), comm);
} }
std::size_t packSize(const TlmixparTable& data, Dune::MPIHelper::MPICommunicator comm)
{
return packSize(static_cast<const std::vector<TlmixparRecord>&>(data), comm);
}
std::size_t packSize(const PlyvmhTable& data, Dune::MPIHelper::MPICommunicator comm) std::size_t packSize(const PlyvmhTable& data, Dune::MPIHelper::MPICommunicator comm)
{ {
return packSize(static_cast<const std::vector<PlyvmhRecord>&>(data), comm); return packSize(static_cast<const std::vector<PlyvmhRecord>&>(data), comm);
@ -2360,12 +2354,6 @@ void pack(const SolventDensityTable& data,
pack(data.getSolventDensityColumn(), buffer, position, comm); pack(data.getSolventDensityColumn(), buffer, position, comm);
} }
void pack(const TlmixparTable& data, std::vector<char>& buffer, int& position,
Dune::MPIHelper::MPICommunicator comm)
{
pack(static_cast<const std::vector<TlmixparRecord>&>(data), buffer, position, comm);
}
void pack(const PlyvmhTable& data, std::vector<char>& buffer, int& position, void pack(const PlyvmhTable& data, std::vector<char>& buffer, int& position,
Dune::MPIHelper::MPICommunicator comm) Dune::MPIHelper::MPICommunicator comm)
{ {
@ -3965,14 +3953,6 @@ void unpack(SolventDensityTable& data, std::vector<char>& buffer, int& position,
data = SolventDensityTable(tableValues); data = SolventDensityTable(tableValues);
} }
void unpack(TlmixparTable& data, std::vector<char>& buffer, int& position,
Dune::MPIHelper::MPICommunicator comm)
{
std::vector<TlmixparRecord> pdata;
unpack(pdata, buffer, position, comm);
data = TlmixparTable(pdata);
}
void unpack(PlyvmhTable& data, std::vector<char>& buffer, int& position, void unpack(PlyvmhTable& data, std::vector<char>& buffer, int& position,
Dune::MPIHelper::MPICommunicator comm) Dune::MPIHelper::MPICommunicator comm)
{ {

View File

@ -97,8 +97,6 @@ class TableContainer;
class TableManager; class TableManager;
class TableSchema; class TableSchema;
class TimeStampUTC; class TimeStampUTC;
class TlmixparRecord;
class TlmixparTable;
class Tuning; class Tuning;
class UDAValue; class UDAValue;
class UnitSystem; class UnitSystem;
@ -506,8 +504,6 @@ ADD_PACK_PROTOTYPES(TableManager)
ADD_PACK_PROTOTYPES(TableSchema) ADD_PACK_PROTOTYPES(TableSchema)
ADD_PACK_PROTOTYPES(TimeMap) ADD_PACK_PROTOTYPES(TimeMap)
ADD_PACK_PROTOTYPES(TimeStampUTC) ADD_PACK_PROTOTYPES(TimeStampUTC)
ADD_PACK_PROTOTYPES(TlmixparRecord)
ADD_PACK_PROTOTYPES(TlmixparTable)
ADD_PACK_PROTOTYPES(Tuning) ADD_PACK_PROTOTYPES(Tuning)
ADD_PACK_PROTOTYPES(UDAValue) ADD_PACK_PROTOTYPES(UDAValue)
ADD_PACK_PROTOTYPES(UnitSystem) ADD_PACK_PROTOTYPES(UnitSystem)