From 4aea8cd584b279944b488093dc3e53392f0f4109 Mon Sep 17 00:00:00 2001 From: Joakim Hove Date: Mon, 4 Oct 2021 12:22:20 +0200 Subject: [PATCH] Add network member to ScheduleState::operator==() --- src/opm/parser/eclipse/EclipseState/Schedule/ScheduleState.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/opm/parser/eclipse/EclipseState/Schedule/ScheduleState.cpp b/src/opm/parser/eclipse/EclipseState/Schedule/ScheduleState.cpp index 0c9ef24b1..6c1dfe4bc 100644 --- a/src/opm/parser/eclipse/EclipseState/Schedule/ScheduleState.cpp +++ b/src/opm/parser/eclipse/EclipseState/Schedule/ScheduleState.cpp @@ -248,6 +248,7 @@ bool ScheduleState::operator==(const ScheduleState& other) const { this->m_message_limits == other.m_message_limits && this->m_whistctl_mode == other.m_whistctl_mode && this->m_nupcol == other.m_nupcol && + this->network.get() == other.network.get() && this->wtest_config.get() == other.wtest_config.get() && this->well_order.get() == other.well_order.get() && this->group_order.get() == other.group_order.get() &&