add serialization support to SimulatorFullyImplicitBlackoilEbos

this is the top of the hierarchy so a test would basically
be a full restart test
This commit is contained in:
Arne Morten Kvarving 2023-02-09 11:17:28 +01:00
parent c3da4f2341
commit 524c1320bb

View File

@ -381,6 +381,14 @@ public:
const Grid& grid() const
{ return ebosSimulator_.vanguard().grid(); }
template<class Serializer>
void serializeOp(Serializer& serializer)
{
serializer(ebosSimulator_);
serializer(report_);
serializer(adaptiveTimeStepping_);
}
protected:
std::unique_ptr<Solver> createSolver(WellModel& wellModel)