36 simulatorUpdate.tran_update =
false;
38 simulatorUpdate.affected_wells = {
"test"};
39 return simulatorUpdate;
42 template<
class Serializer>
45 serializer(affected_wells);
46 serializer(tran_update);
52 std::unordered_set<std::string> affected_wells;
57 bool tran_update{
false};
65 this->tran_update = otherSimUpdate.tran_update or this->tran_update;
67 affected_wells.insert(otherSimUpdate.affected_wells.begin(), otherSimUpdate.affected_wells.end());
73 affected_wells.clear();
76 bool operator==(
const SimulatorUpdate& data)
const {
77 return tran_update == data.tran_update &&
79 affected_wells == data.affected_wells;
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition Exceptions.hpp:30