fixed: primary variables no longer needs to be mutable

This commit is contained in:
Arne Morten Kvarving
2022-11-09 13:06:32 +01:00
parent 13af642fe4
commit 2671a3fb35

View File

@@ -105,7 +105,7 @@ protected:
void updateWellStateFromPrimaryVariables(WellState& well_state,
DeferredLogger& deferred_logger) const;
mutable PrimaryVariables primary_variables_; //!< Primary variables for well
PrimaryVariables primary_variables_; //!< Primary variables for well
// the saturations in the well bore under surface conditions at the beginning of the time step
std::vector<double> F0_;