changed: rename accessor to data()

the two classes EDITNNC and NNC are very similar, which makes templating
useful. this small difference makes it hard to do. unify them.
This commit is contained in:
Arne Morten Kvarving
2019-11-25 08:46:01 +01:00
parent d3cc7303b4
commit 0d6ed7cfb6
5 changed files with 7 additions and 7 deletions

View File

@@ -10,7 +10,7 @@ namespace {
py::list getNNC( const EclipseState& state ) {
py::list l;
for( const auto& x : state.getInputNNC().nncdata() )
for( const auto& x : state.getInputNNC().data() )
l.append( py::make_tuple( x.cell1, x.cell2, x.trans ) );
return l;
}