Added completion list to RegionCache.

This commit is contained in:
Joakim Hove
2016-10-12 11:36:48 +02:00
parent a8d82221a8
commit 64f5c9d13e
5 changed files with 41 additions and 7 deletions

View File

@@ -44,9 +44,9 @@ const char* path = "summary_deck.DATA";
BOOST_AUTO_TEST_CASE(create) {
ParseContext parseContext;
Parser parser;
std::shared_ptr<Deck> deck( parser.parseFile( path, parseContext ));
EclipseState es(*deck , parseContext );
const EclipseGrid& grid = *es.getInputGrid();
Deck deck( parser.parseFile( path, parseContext ));
EclipseState es(deck , parseContext );
const EclipseGrid& grid = es.getInputGrid();
out::RegionCache rc(es , grid);