mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
remove old serialization support for Stone1exTable
This commit is contained in:
@@ -309,7 +309,6 @@ HANDLE_AS_POD(MLimits)
|
|||||||
HANDLE_AS_POD(PlyvmhRecord)
|
HANDLE_AS_POD(PlyvmhRecord)
|
||||||
HANDLE_AS_POD(Regdims)
|
HANDLE_AS_POD(Regdims)
|
||||||
HANDLE_AS_POD(StandardCond)
|
HANDLE_AS_POD(StandardCond)
|
||||||
HANDLE_AS_POD(Stone1exRecord)
|
|
||||||
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(TlmixparRecord)
|
||||||
@@ -1213,11 +1212,6 @@ std::size_t packSize(const PlyvmhTable& data, Dune::MPIHelper::MPICommunicator c
|
|||||||
return packSize(static_cast<const std::vector<PlyvmhRecord>&>(data), comm);
|
return packSize(static_cast<const std::vector<PlyvmhRecord>&>(data), comm);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::size_t packSize(const Stone1exTable& data, Dune::MPIHelper::MPICommunicator comm)
|
|
||||||
{
|
|
||||||
return packSize(static_cast<const std::vector<Stone1exRecord>&>(data), comm);
|
|
||||||
}
|
|
||||||
|
|
||||||
std::size_t packSize(const PlyshlogTable& data, Dune::MPIHelper::MPICommunicator comm)
|
std::size_t packSize(const PlyshlogTable& data, Dune::MPIHelper::MPICommunicator comm)
|
||||||
{
|
{
|
||||||
return packSize(static_cast<const SimpleTable&>(data), comm) +
|
return packSize(static_cast<const SimpleTable&>(data), comm) +
|
||||||
@@ -2378,12 +2372,6 @@ void pack(const PlyvmhTable& data, std::vector<char>& buffer, int& position,
|
|||||||
pack(static_cast<const std::vector<PlyvmhRecord>&>(data), buffer, position, comm);
|
pack(static_cast<const std::vector<PlyvmhRecord>&>(data), buffer, position, comm);
|
||||||
}
|
}
|
||||||
|
|
||||||
void pack(const Stone1exTable& data, std::vector<char>& buffer, int& position,
|
|
||||||
Dune::MPIHelper::MPICommunicator comm)
|
|
||||||
{
|
|
||||||
pack(static_cast<const std::vector<Stone1exRecord>&>(data), buffer, position, comm);
|
|
||||||
}
|
|
||||||
|
|
||||||
void pack(const PlyshlogTable& data, std::vector<char>& buffer, int& position,
|
void pack(const PlyshlogTable& data, std::vector<char>& buffer, int& position,
|
||||||
Dune::MPIHelper::MPICommunicator comm)
|
Dune::MPIHelper::MPICommunicator comm)
|
||||||
{
|
{
|
||||||
@@ -3993,14 +3981,6 @@ void unpack(PlyvmhTable& data, std::vector<char>& buffer, int& position,
|
|||||||
data = PlyvmhTable(pdata);
|
data = PlyvmhTable(pdata);
|
||||||
}
|
}
|
||||||
|
|
||||||
void unpack(Stone1exTable& data, std::vector<char>& buffer, int& position,
|
|
||||||
Dune::MPIHelper::MPICommunicator comm)
|
|
||||||
{
|
|
||||||
std::vector<Stone1exRecord> pdata;
|
|
||||||
unpack(pdata, buffer, position, comm);
|
|
||||||
data = Stone1exTable(pdata);
|
|
||||||
}
|
|
||||||
|
|
||||||
void unpack(PlyshlogTable& data, std::vector<char>& buffer, int& position,
|
void unpack(PlyshlogTable& data, std::vector<char>& buffer, int& position,
|
||||||
Dune::MPIHelper::MPICommunicator comm)
|
Dune::MPIHelper::MPICommunicator comm)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -91,8 +91,6 @@ class SkprwatTable;
|
|||||||
class SolventDensityTable;
|
class SolventDensityTable;
|
||||||
class SpiralICD;
|
class SpiralICD;
|
||||||
class StandardCond;
|
class StandardCond;
|
||||||
class Stone1exRecord;
|
|
||||||
class Stone1exTable;
|
|
||||||
class Tabdims;
|
class Tabdims;
|
||||||
class TableColumn;
|
class TableColumn;
|
||||||
class TableContainer;
|
class TableContainer;
|
||||||
@@ -501,8 +499,6 @@ ADD_PACK_PROTOTYPES(SkprwatTable)
|
|||||||
ADD_PACK_PROTOTYPES(SolventDensityTable)
|
ADD_PACK_PROTOTYPES(SolventDensityTable)
|
||||||
ADD_PACK_PROTOTYPES(SpiralICD)
|
ADD_PACK_PROTOTYPES(SpiralICD)
|
||||||
ADD_PACK_PROTOTYPES(std::string)
|
ADD_PACK_PROTOTYPES(std::string)
|
||||||
ADD_PACK_PROTOTYPES(Stone1exRecord)
|
|
||||||
ADD_PACK_PROTOTYPES(Stone1exTable)
|
|
||||||
ADD_PACK_PROTOTYPES(Tabdims)
|
ADD_PACK_PROTOTYPES(Tabdims)
|
||||||
ADD_PACK_PROTOTYPES(TableColumn)
|
ADD_PACK_PROTOTYPES(TableColumn)
|
||||||
ADD_PACK_PROTOTYPES(TableContainer)
|
ADD_PACK_PROTOTYPES(TableContainer)
|
||||||
|
|||||||
Reference in New Issue
Block a user