aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoodale <goodale@5633253d-7678-4964-a54d-f87795f8ee59>2004-05-17 12:28:55 +0000
committergoodale <goodale@5633253d-7678-4964-a54d-f87795f8ee59>2004-05-17 12:28:55 +0000
commit175390ece97c7be73779aa6922193469f1a206a0 (patch)
treef3b156695846894fc36768b2cf8bcbf6f671dea1
parentc17a172cb4244c07b61be3d2ceb8ebac9136770a (diff)
Untabified. Please try to adhere to the Cactus coding guidelines when
modifying or adding files. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/Time/trunk@60 5633253d-7678-4964-a54d-f87795f8ee59
-rw-r--r--src/Simple.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Simple.c b/src/Simple.c
index af22128..1723101 100644
--- a/src/Simple.c
+++ b/src/Simple.c
@@ -35,13 +35,13 @@ void Time_Simple(CCTK_ARGUMENTS)
if (cctk_dim>=2)
{
min_spacing = (min_spacing<cctk_delta_space[1] ?
- min_spacing : cctk_delta_space[1]);
+ min_spacing : cctk_delta_space[1]);
}
if (cctk_dim>=3)
{
min_spacing = (min_spacing<cctk_delta_space[2] ?
- min_spacing : cctk_delta_space[2]);
+ min_spacing : cctk_delta_space[2]);
}
if (cctk_dim>=4)
@@ -55,15 +55,15 @@ void Time_Simple(CCTK_ARGUMENTS)
if (verbose)
{
CCTK_VInfo(CCTK_THORNSTRING,
- "Using simple courant condition to set timestep");
+ "Using simple courant condition to set timestep");
CCTK_VInfo(CCTK_THORNSTRING,
- " ... using dtfac of %f",dtfac);
+ " ... using dtfac of %f",dtfac);
CCTK_VInfo(CCTK_THORNSTRING,
- " ... using minimum spacing of %f",min_spacing);
+ " ... using minimum spacing of %f",min_spacing);
}
CCTK_VInfo(CCTK_THORNSTRING,
- "Timestep set to %g (courant_static)",cctkGH->cctk_delta_time);
+ "Timestep set to %g (courant_static)",cctkGH->cctk_delta_time);
}