mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-21 08:54:08 -06:00
adjust to InputErrorAction change to enum class
This commit is contained in:
parent
4dc068c87f
commit
3a01e89585
@ -99,11 +99,11 @@ void EclGenericVanguard::readDeck(const std::string& filename)
|
||||
std::shared_ptr<Opm::SummaryConfig> summaryConfig;
|
||||
|
||||
auto parseContext =
|
||||
std::make_unique<ParseContext>(std::vector<std::pair<std::string , InputError::Action>>
|
||||
{{ParseContext::PARSE_RANDOM_SLASH, InputError::IGNORE},
|
||||
{ParseContext::PARSE_MISSING_DIMS_KEYWORD, InputError::WARN},
|
||||
{ParseContext::SUMMARY_UNKNOWN_WELL, InputError::WARN},
|
||||
{ParseContext::SUMMARY_UNKNOWN_GROUP, InputError::WARN}});
|
||||
std::make_unique<ParseContext>(std::vector<std::pair<std::string , InputErrorAction>>
|
||||
{{ParseContext::PARSE_RANDOM_SLASH, InputErrorAction::IGNORE},
|
||||
{ParseContext::PARSE_MISSING_DIMS_KEYWORD, InputErrorAction::WARN},
|
||||
{ParseContext::SUMMARY_UNKNOWN_WELL, InputErrorAction::WARN},
|
||||
{ParseContext::SUMMARY_UNKNOWN_GROUP, InputErrorAction::WARN}});
|
||||
|
||||
Opm::readDeck(EclGenericVanguard::comm(),
|
||||
filename, eclipseState, schedule, udqState,
|
||||
|
@ -504,13 +504,13 @@ private:
|
||||
EWOMS_GET_PARAM(PreTypeTag, std::string, OutputMode),
|
||||
outputCout_, "STDOUT_LOGGER", allRanksDbgPrtLog);
|
||||
auto parseContext =
|
||||
std::make_unique<ParseContext>(std::vector<std::pair<std::string , InputError::Action>>
|
||||
{{ParseContext::PARSE_RANDOM_SLASH, InputError::IGNORE},
|
||||
{ParseContext::PARSE_MISSING_DIMS_KEYWORD, InputError::WARN},
|
||||
{ParseContext::SUMMARY_UNKNOWN_WELL, InputError::WARN},
|
||||
{ParseContext::SUMMARY_UNKNOWN_GROUP, InputError::WARN}});
|
||||
std::make_unique<ParseContext>(std::vector<std::pair<std::string , InputErrorAction>>
|
||||
{{ParseContext::PARSE_RANDOM_SLASH, InputErrorAction::IGNORE},
|
||||
{ParseContext::PARSE_MISSING_DIMS_KEYWORD, InputErrorAction::WARN},
|
||||
{ParseContext::SUMMARY_UNKNOWN_WELL, InputErrorAction::WARN},
|
||||
{ParseContext::SUMMARY_UNKNOWN_GROUP, InputErrorAction::WARN}});
|
||||
if (EWOMS_GET_PARAM(PreTypeTag, bool, EclStrictParsing))
|
||||
parseContext->update(InputError::DELAYED_EXIT1);
|
||||
parseContext->update(InputErrorAction::DELAYED_EXIT1);
|
||||
|
||||
FlowMainEbos<PreTypeTag>::printPRTHeader(outputCout_);
|
||||
|
||||
|
@ -280,7 +280,7 @@ void verify_norne_oil_pvt_region2(const Opm::EclipseState& eclState, const Opm::
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE( Test_Norne_PVT) {
|
||||
Opm::ParseContext parseContext({{ ParseContext::PARSE_RANDOM_SLASH , InputError::IGNORE }});
|
||||
Opm::ParseContext parseContext({{ ParseContext::PARSE_RANDOM_SLASH , InputErrorAction::IGNORE }});
|
||||
Opm::ErrorGuard errorGuard;
|
||||
Opm::Parser parser;
|
||||
auto python = std::make_shared<Opm::Python>();
|
||||
|
Loading…
Reference in New Issue
Block a user