aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorknarf <knarf@b2a53a04-0f4f-0410-87ed-f9f25ced00cf>2005-02-16 15:23:25 +0000
committerknarf <knarf@b2a53a04-0f4f-0410-87ed-f9f25ced00cf>2005-02-16 15:23:25 +0000
commit9bfa0e59a63cbd8c7b0962488ea56cfe056d7869 (patch)
tree4ede6f06fa4d39bec405f256cb02ecdf7d5b044e /src
parentcb207efdd29c16a329e7b462a680a0b844fd5ca1 (diff)
bugfix
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/TwoPunctures/trunk@35 b2a53a04-0f4f-0410-87ed-f9f25ced00cf
Diffstat (limited to 'src')
-rw-r--r--src/FuncAndJacobian.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/FuncAndJacobian.c b/src/FuncAndJacobian.c
index b2f265e..cd32eb4 100644
--- a/src/FuncAndJacobian.c
+++ b/src/FuncAndJacobian.c
@@ -342,11 +342,11 @@ F_of_v (CCTK_POINTER_TO_CONST cctkGH,
psi4 = psi2 * psi2;
psi7 = psi * psi2 * psi4;
fprintf(debugfile, "%.8g %.8g %.8g %.8g %.8g %.8g\n", x, y, A, B,
- U.d11[indx] +
- U.d22[indx] +
- U.d33[indx]
+ U.d11[0] +
+ U.d22[0] +
+ U.d33[0]
+ 2.0 * Pi / psi2/psi * sources[indx],
- U.d0[indx]
+ U.d0[0]
);
}
}