aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorallen <allen@b61c5cb5-eaca-4651-9a7a-d64986f99364>2000-09-22 07:24:57 +0000
committerallen <allen@b61c5cb5-eaca-4651-9a7a-d64986f99364>2000-09-22 07:24:57 +0000
commit0dff01b1a3aa070559799893c8a34a0cb2b39fc8 (patch)
treee564371765b7721a8e13bc5fd27eb9b8a022d154 /src
parent5766dbcaec17c3873f5157d6c894a1575ee1d22e (diff)
Macro name changes
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@279 b61c5cb5-eaca-4651-9a7a-d64986f99364
Diffstat (limited to 'src')
-rw-r--r--src/GHExtension.c2
-rw-r--r--src/PughUtils.c2
-rw-r--r--src/Reduction.c6
3 files changed, 5 insertions, 5 deletions
diff --git a/src/GHExtension.c b/src/GHExtension.c
index 624f990..876c230 100644
--- a/src/GHExtension.c
+++ b/src/GHExtension.c
@@ -102,7 +102,7 @@ void *PUGH_SetupGH(tFleshConfig *config,
{
groupsize[i]=*size[i];
/* Check distribution type */
- if (pgroup.disttype == DISTRIB_CONSTANT)
+ if (pgroup.disttype == CCTK_DISTRIB_CONSTANT)
{
groupsize[i] = -groupsize[i];
}
diff --git a/src/PughUtils.c b/src/PughUtils.c
index 5ee6641..ef104b7 100644
--- a/src/PughUtils.c
+++ b/src/PughUtils.c
@@ -61,7 +61,7 @@ void PUGH_Report(CCTK_ARGUMENTS)
/* Report on grid decomposition for any grid functions */
for (gi=0;gi<CCTK_NumGroups();gi++)
{
- if (CCTK_GroupTypeI(gi) == GROUP_GF)
+ if (CCTK_GroupTypeI(gi) == CCTK_GF)
{
dim = CCTK_GroupDimI(gi);
havedims[dim-1]=1;
diff --git a/src/Reduction.c b/src/Reduction.c
index 89e7cab..ad82a3e 100644
--- a/src/Reduction.c
+++ b/src/Reduction.c
@@ -128,13 +128,13 @@ int PUGH_ReductionGVs (cGH *GH,
{
switch (CCTK_GroupTypeFromVarI (invars[i]))
{
- case GROUP_GF:
- case GROUP_ARRAY:
+ case CCTK_GF:
+ case CCTK_ARRAY:
this_retval = PUGH_ReductionGA (GH, invars[i], proc, &result,
reduction_fn);
break;
- case GROUP_SCALAR:
+ case CCTK_SCALAR:
CCTK_WARN (1, "PUGH_ReductionGVs: Reducing scalars doesn't make sense");
this_retval = -1;
break;