Re-factor creation and destruction of cell->well mapping out to

separate module.  Update callers.
This commit is contained in:
Bård Skaflestad 2010-09-15 12:13:53 +00:00
parent 31c5ff58b5
commit 222d6da348

10
well.h
View File

@ -28,4 +28,14 @@ typedef struct {
WELL_CONNECTION_DATA
} well_t;
int
allocate_cell_wells(int nc, well_t *W, int **cwpos, int **cwells);
void
deallocate_cell_wells(int *cvpos, int *cwells);
void
derive_cell_wells(int nc, well_t *W, int *cwpos, int *cwells);
#endif