mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-25 02:30:18 -06:00
Merge pull request #1101 from joakim-hove/allow-undefined-wells
Policy change: warn when missing well/group.
This commit is contained in:
commit
b8adfbb52f
@ -499,7 +499,9 @@ namespace Opm
|
||||
// Create Deck and EclipseState.
|
||||
try {
|
||||
ParseContext parseContext({ { ParseContext::PARSE_RANDOM_SLASH , InputError::IGNORE },
|
||||
{ ParseContext::PARSE_MISSING_DIMS_KEYWORD, InputError::WARN } });
|
||||
{ ParseContext::PARSE_MISSING_DIMS_KEYWORD, InputError::WARN },
|
||||
{ ParseContext::SUMMARY_UNKNOWN_WELL, InputError::WARN },
|
||||
{ ParseContext::SUMMARY_UNKNOWN_GROUP, InputError::WARN }});
|
||||
deck_ = std::make_shared< Deck >( parser.parseFile(deck_filename, parseContext) );
|
||||
checkDeck(*deck_, parser);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user