Slowly cleaning up the code.

This commit is contained in:
Jostein R. Natvig
2009-06-18 16:12:04 +00:00
parent 7c0a301382
commit eee76550ef
2 changed files with 77 additions and 56 deletions

View File

@@ -22,12 +22,13 @@ struct processed_grid{
double *node_coordinates; /* 3 doubles per node, sequentially */
int number_of_cells; /* number of active cells */
int number_of_active_cells;
int *local_cell_index; /* Global to local map */
};
void processGrdecl(const struct grdecl *g, double tol, struct processed_grid *out);
void process_grdecl (const struct grdecl *g,
double tol,
struct processed_grid *out);
void free_processed_grid(struct processed_grid *g);
#endif