aboutsummaryrefslogtreecommitdiff
path: root/src/IsoSurfacer.c
diff options
context:
space:
mode:
authortradke <tradke@bfcf8e34-485d-4d46-a995-1fd6fa6fb178>2002-05-06 09:16:15 +0000
committertradke <tradke@bfcf8e34-485d-4d46-a995-1fd6fa6fb178>2002-05-06 09:16:15 +0000
commit963aacf088f5c62136db11d92fbe117918b97887 (patch)
treea985ddca7cabfbc769c2721fa9ddb053be7276a0 /src/IsoSurfacer.c
parentd216274f9eb26921d18c5697c6bb01dc880491ea (diff)
Parameter names changes as announced in today's mail to users@cactuscode.org.
You must also update thorn IOUtil now. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IsoSurfacer/trunk@60 bfcf8e34-485d-4d46-a995-1fd6fa6fb178
Diffstat (limited to 'src/IsoSurfacer.c')
-rw-r--r--src/IsoSurfacer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/IsoSurfacer.c b/src/IsoSurfacer.c
index 2ef852c..ef9fb9f 100644
--- a/src/IsoSurfacer.c
+++ b/src/IsoSurfacer.c
@@ -121,7 +121,7 @@ static int IsoSurfacerHandleCommands(const cGH *GH)
CCTK_REAL tmpval;
pGH *pughGH = PUGH_pGH (GH);
if(pughGH->myproc==0 && Iso_PollCommand(GH,&command)){
- if (verbose)
+ if (CCTK_Equals (verbose, "full"))
{
printf("+++++++++Process Command [%s] [%s] [%s]\n",
command.cmd.object,command.cmd.target,command.cmd.value);
@@ -146,7 +146,7 @@ static int IsoSurfacerHandleCommands(const cGH *GH)
}
#else
if(Iso_PollCommand(GH,&command)){
- if (verbose)
+ if (CCTK_Equals (verbose, "full"))
{
printf("+++++++++Process Command [%s] [%s] [%s]\n",
command.cmd.object,command.cmd.target,command.cmd.value);
@@ -242,13 +242,13 @@ static void computeIso(int vindex, const cGH *GH, isosurfacerGH *myGH)
polybackup=myGH->totals.polys; myGH->totals.polys = tmppolys;
vertbackup=myGH->totals.verts; myGH->totals.verts = tmpverts;
}
- if (verbose)
+ if (CCTK_Equals (verbose, "full"))
printf(" | IsoSurfacer: GF=%s, value %f,",
fullname, myGH->isovalue);
if(myGH->totals.nverts > 0) {
- if (verbose)
+ if (CCTK_Equals (verbose, "full"))
printf("%d vertices, %d triangles\n", myGH->totals.nverts, myGH->totals.npolys);
if(myGH->formats & BIN)