aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorknarf <knarf@b2a53a04-0f4f-0410-87ed-f9f25ced00cf>2004-10-07 10:00:11 +0000
committerknarf <knarf@b2a53a04-0f4f-0410-87ed-f9f25ced00cf>2004-10-07 10:00:11 +0000
commit5193ed91db2c3d10b45f56b156b7efe6773e4a3c (patch)
tree79982ec7b472553cfc7e5b60a0126fc94d78ba98 /src
parentea198334790a570ca3e04b15b9415624933419eb (diff)
- included Eriks changes - thanks!
I should have looked harder for the documentation of aliased functions. :/ git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/TwoPunctures/trunk@22 b2a53a04-0f4f-0410-87ed-f9f25ced00cf
Diffstat (limited to 'src')
-rw-r--r--src/FuncAndJacobian.c2
-rw-r--r--src/ParamCheck.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/FuncAndJacobian.c b/src/FuncAndJacobian.c
index c2c972e..a90c6be 100644
--- a/src/FuncAndJacobian.c
+++ b/src/FuncAndJacobian.c
@@ -250,7 +250,7 @@ F_of_v (CCTK_POINTER_TO_CONST cctkGH,
// (U, U_x, U_y, U_z, U_xx, U_xy, U_xz, U_yy, U_yz, U_zz)
rx3_To_xyz (nvar, s_x[i3D], r, phi, &(s_y[i3D]), &(s_z[i3D]), U);
}
- Rho_ADM(cctkGH, n1*n2*n3, sources, s_x, s_y, s_z);
+ Set_Rho_ADM(cctkGH, n1*n2*n3, sources, s_x, s_y, s_z);
free(s_z);
free(s_y);
free(s_x);
diff --git a/src/ParamCheck.c b/src/ParamCheck.c
index ca06f64..9ec622e 100644
--- a/src/ParamCheck.c
+++ b/src/ParamCheck.c
@@ -21,7 +21,7 @@ TwoPunctures_ParamCheck (CCTK_ARGUMENTS)
if (par_use_sources)
{
CCTK_INFO("Solving for BH-NS");
- if (CCTK_IsFunctionAliased ("Rho_ADM"))
+ if (CCTK_IsFunctionAliased ("Set_Rho_ADM"))
CCTK_INFO("Aliased Functions found");
else
CCTK_WARN(0, "I found no (aliased) function for matter sources, but "