summaryrefslogtreecommitdiff
path: root/src/include/cGH.h
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-06-15 09:03:57 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-06-15 09:03:57 +0000
commit8970cf2d062b5650cd2ae764ded94769d8d027a7 (patch)
treea73838e0935bca6e4799a561241e4dfc6ba12e29 /src/include/cGH.h
parent73c042453a8491a59c1e44965ec2a62440db04b8 (diff)
Double -> CCTK_REAL
REAL -> CCTK_REAL POINTER -> CCTK_POINTER VARIABLE_REAL -> CCTK_VARIABLE_REAL (etc) GH->iteration is now an int (not an unsigned long int) git-svn-id: http://svn.cactuscode.org/flesh/trunk@551 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cGH.h')
-rw-r--r--src/include/cGH.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/cGH.h b/src/include/cGH.h
index 5bc75663..93a3ab18 100644
--- a/src/include/cGH.h
+++ b/src/include/cGH.h
@@ -22,7 +22,7 @@ typedef struct
typedef struct
{
int dim;
- unsigned long int iteration;
+ int iteration;
/* ...[dim]*/
int *global_shape;
@@ -31,11 +31,11 @@ typedef struct
int *upper_bound;
/* The grid spacings */
- Double delta_time;
- Double *delta_space;
+ CCTK_REAL delta_time;
+ CCTK_REAL *delta_space;
/* FIXME we want coordinate registration instead of this */
- Double *origin_space;
+ CCTK_REAL *origin_space;
/* The bounding box - 1 => a real boundary, 0 => a local grid boundary. */
/* bbox[2*dim] */
@@ -51,7 +51,7 @@ typedef struct
int nghostzones;
/* The coordinate time */
- Double time;
+ CCTK_REAL time;
/* data[var_num][TIMELEVEL][xyz]*/
/* TIMELEVEL I believe, xyz is linear */