White space
This commit is contained in:
parent
f3e9a02123
commit
5316d193ea
@ -488,6 +488,7 @@ public:
|
||||
const std::string& groupName() const;
|
||||
Phase getPreferredPhase() const;
|
||||
|
||||
const std::vector<const Connection *> getConnections(int completion) const;
|
||||
const WellConnections& getConnections() const;
|
||||
const WellSegments& getSegments() const;
|
||||
|
||||
@ -530,9 +531,6 @@ public:
|
||||
connections. The integer ID is assigned with the COMPLUMP keyword.
|
||||
*/
|
||||
bool hasCompletion(int completion) const;
|
||||
const std::vector<const Connection *> getConnections(int completion) const;
|
||||
|
||||
|
||||
bool updatePrediction(bool prediction_mode);
|
||||
bool updateAutoShutin(bool auto_shutin);
|
||||
bool updateCrossFlow(bool allow_cross_flow);
|
||||
|
@ -1036,8 +1036,8 @@ bool Well::handleWELOPEN(const DeckRecord& record, Connection::State state_arg,
|
||||
bool Well::handleCOMPLUMP(const DeckRecord& record) {
|
||||
|
||||
auto match = [=]( const Connection &c) -> bool {
|
||||
if (!match_eq(c.getI(), record, "I" , -1)) return false;
|
||||
if (!match_eq(c.getJ(), record, "J" , -1)) return false;
|
||||
if (!match_eq(c.getI(), record, "I" , -1)) return false;
|
||||
if (!match_eq(c.getJ(), record, "J" , -1)) return false;
|
||||
if (!match_ge(c.getK(), record, "K1", -1)) return false;
|
||||
if (!match_le(c.getK(), record, "K2", -1)) return false;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user