Now added CpGrid::readEclipseFormat() and stuff needed by it.

This commit is contained in:
Atgeirr Flø Rasmussen 2009-06-12 09:01:36 +00:00
parent f02fbe0b9d
commit 095a54a832

View File

@ -2,11 +2,11 @@
#define GRDECL_H #define GRDECL_H
struct Grdecl{ struct Grdecl{
int n; int n;
int dims[3]; int dims[3];
double *coord; const double *coord;
double *zcorn; const double *zcorn;
int *actnum; const int *actnum;
}; };