Strict parsing is now the default.

This commit is contained in:
osae 2014-08-07 19:14:36 +02:00
parent a8d99d0443
commit 8fa34b421a

View File

@ -102,7 +102,7 @@ try
std::string deck_filename = param.get<std::string>("deck_filename");
Opm::ParserPtr newParser(new Opm::Parser() );
bool strict_parsing = param.getDefault("strict_parsing", false);
bool strict_parsing = param.getDefault("strict_parsing", true);
Opm::DeckConstPtr deck = newParser->parseFile(deck_filename, strict_parsing);
std::shared_ptr<EclipseState> eclipseState(new EclipseState(deck));