From 222d6da348ad8892f2deaa39499a57fe4034d34d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A5rd=20Skaflestad?= Date: Wed, 15 Sep 2010 12:13:53 +0000 Subject: [PATCH] Re-factor creation and destruction of cell->well mapping out to separate module. Update callers. --- well.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/well.h b/well.h index e319b506d..a4b37cbac 100644 --- a/well.h +++ b/well.h @@ -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