aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlanfer <lanfer@50555cc7-fb31-491a-85db-9a2874240742>2000-04-07 17:14:30 +0000
committerlanfer <lanfer@50555cc7-fb31-491a-85db-9a2874240742>2000-04-07 17:14:30 +0000
commitbe08713e19b79c5579ce4b0934fdd08322a84fa6 (patch)
treefd4ec9d8a79a3e0a5a4afe4b7e77b68d76b2efa7 /src
parented3cf91b28bead60b68fa95e0829ab8a7d68b64e (diff)
removing warnings
git-svn-id: http://svn.cactuscode.org/arrangements/CactusWave/WaveToyCXX/trunk@23 50555cc7-fb31-491a-85db-9a2874240742
Diffstat (limited to 'src')
-rw-r--r--src/WaveToy.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WaveToy.cc b/src/WaveToy.cc
index 978f1e8..f8073ff 100644
--- a/src/WaveToy.cc
+++ b/src/WaveToy.cc
@@ -69,11 +69,11 @@ extern "C" void WaveToyCXX_Evolution(CCTK_ARGUMENTS)
// Do the evolution
//
- for (int k=1; k<kend; k++)
+ for (int k=kstart; k<kend; k++)
{
- for (int j=1; j<jend; j++)
+ for (int j=jstart; j<jend; j++)
{
- for (int i=1; i<iend; i++)
+ for (int i=istart; i<iend; i++)
{
int index = CCTK_GFINDEX3D(cctkGH,i,j,k);