aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorknarf <knarf@b2a53a04-0f4f-0410-87ed-f9f25ced00cf>2006-08-10 14:12:35 +0000
committerknarf <knarf@b2a53a04-0f4f-0410-87ed-f9f25ced00cf>2006-08-10 14:12:35 +0000
commit38158ed08c1e055091b3209caa14662b5b0edb32 (patch)
tree16ea3b15cece3c1c8a60e4d3191dff2940527c45 /src
parent82be6b4bcd7e52088d71d1347f388f04d049ad68 (diff)
again also interpolate into ghost zones until someone finds why it does not work always
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/TwoPunctures/trunk@61 b2a53a04-0f4f-0410-87ed-f9f25ced00cf
Diffstat (limited to 'src')
-rw-r--r--src/TwoPunctures.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/TwoPunctures.c b/src/TwoPunctures.c
index 833bb1f..a2e8c4a 100644
--- a/src/TwoPunctures.c
+++ b/src/TwoPunctures.c
@@ -272,8 +272,12 @@ TwoPunctures (CCTK_ARGUMENTS)
for (d = 0; d < 3; ++ d)
{
+ /*
imin[d] = 0 + (cctk_bbox[2*d ] ? 0 : cctk_nghostzones[d]);
imax[d] = cctk_lsh[d] - (cctk_bbox[2*d+1] ? 0 : cctk_nghostzones[d]);
+ */
+ imin[d] = 0;
+ imax[d] = cctk_lsh[d];
}
for (k = imin[2]; k < imax[2]; ++k)