aboutsummaryrefslogtreecommitdiff
path: root/src/Registration.c
diff options
context:
space:
mode:
authorhawke <hawke@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2003-12-05 23:14:18 +0000
committerhawke <hawke@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2003-12-05 23:14:18 +0000
commitf63399582ec9aa4341d330c276dcef716862de1f (patch)
treea592ea03f041995a483b470cdba7c3a17ebd990f /src/Registration.c
parent0bf22e6b0b00d179e48e2f0fd228ff72df1e647d (diff)
Correct all the warning messages in the registration functions.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/MoL/trunk@43 578cdeb0-5ea1-4b81-8215-5a3b8777ee0b
Diffstat (limited to 'src/Registration.c')
-rw-r--r--src/Registration.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/Registration.c b/src/Registration.c
index eed54e5..8ba9e78 100644
--- a/src/Registration.c
+++ b/src/Registration.c
@@ -935,9 +935,9 @@ CCTK_INT MoL_RegisterConstrainedReal(CCTK_INT ConstrainedIndex)
if (MoLNumConstrainedVariables > MoL_Num_Constrained_Vars)
{
- CCTK_WARN(0,"You have tried to register more evolved "
+ CCTK_WARN(0,"You have tried to register more constrained "
"variables than the accumulator parameter "
- "MoL_Num_Evolved_Variables allows. "
+ "MoL_Num_Constrained_Variables allows. "
"Check that you are accumulating onto this "
"parameter correctly");
}
@@ -1051,9 +1051,9 @@ CCTK_INT MoL_RegisterSaveAndRestoreReal(CCTK_INT SandRIndex)
if (MoLNumSandRVariables > MoL_Num_SaveAndRestore_Vars)
{
- CCTK_WARN(0,"You have tried to register more evolved "
+ CCTK_WARN(0,"You have tried to register more save and restore "
"variables than the accumulator parameter "
- "MoL_Num_Evolved_Variables allows. Check "
+ "MoL_Num_SaveAndRestore_Variables allows. Check "
"that you are accumulating onto this parameter correctly");
}
@@ -1403,9 +1403,9 @@ CCTK_INT MoL_RegisterConstrainedComplex(CCTK_INT ConstrainedIndex)
if (MoLNumConstrainedComplexVariables >
MoL_Num_ComplexConstrained_Vars)
{
- CCTK_WARN(0,"You have tried to register more evolved "
+ CCTK_WARN(0,"You have tried to register more constrained "
"complex variables than the accumulator parameter "
- "MoL_Num_ComplexEvolved_Variables allows. "
+ "MoL_Num_ComplexConstrained_Variables allows. "
"Check that you are accumulating onto this "
"parameter correctly");
}
@@ -1517,9 +1517,9 @@ CCTK_INT MoL_RegisterSaveAndRestoreComplex(CCTK_INT SandRIndex)
if (MoLNumSandRComplexVariables > MoL_Num_ComplexSaveAndRestore_Vars)
{
- CCTK_WARN(0,"You have tried to register more evolved "
+ CCTK_WARN(0,"You have tried to register more save and restore "
"complex variables than the accumulator parameter "
- "MoL_Num_ComplexEvolved_Variables allows. "
+ "MoL_Num_ComplexSaveAndRestore_Variables allows. "
"Check that you are accumulating onto this "
"parameter correctly");
}
@@ -1860,9 +1860,9 @@ CCTK_INT MoL_RegisterConstrainedArray(CCTK_INT ConstrainedIndex)
if (MoLNumConstrainedArrayVariables >
MoL_Num_ArrayConstrained_Vars)
{
- CCTK_WARN(0,"You have tried to register more evolved "
+ CCTK_WARN(0,"You have tried to register more constrained "
"array variables than the accumulator "
- "parameter MoL_Num_ArrayEvolved_Variables allows. "
+ "parameter MoL_Num_ArrayConstrained_Variables allows. "
"Check that you are accumulating onto this "
"parameter correctly");
}
@@ -1968,9 +1968,9 @@ CCTK_INT MoL_RegisterSaveAndRestoreArray(CCTK_INT SandRIndex)
if (MoLNumSandRArrayVariables > MoL_Num_ArraySaveAndRestore_Vars)
{
- CCTK_WARN(0,"You have tried to register more evolved "
+ CCTK_WARN(0,"You have tried to register more save and restore "
"array variables than the accumulator parameter "
- "MoL_Num_ArrayEvolved_Variables allows. "
+ "MoL_Num_ArraySaveAndRestore_Variables allows. "
"Check that you are accumulating onto "
"this parameter correctly");
}
@@ -2328,9 +2328,9 @@ CCTK_INT MoL_RegisterConstrainedComplexArray(CCTK_INT ConstrainedIndex)
if (MoLNumConstrainedComplexArrayVariables >
MoL_Num_ComplexArrayConstrained_Vars)
{
- CCTK_WARN(0,"You have tried to register more evolved "
+ CCTK_WARN(0,"You have tried to register more constrained "
"complex array variables than the accumulator "
- "parameter MoL_Num_ComplexArrayEvolved_Variables "
+ "parameter MoL_Num_ComplexArrayConstrained_Variables "
"allows. Check that you are accumulating onto "
"this parameter correctly");
}
@@ -2447,9 +2447,9 @@ CCTK_INT MoL_RegisterSaveAndRestoreComplexArray(CCTK_INT SandRIndex)
if (MoLNumSandRComplexArrayVariables >
MoL_Num_ComplexArraySaveAndRestore_Vars)
{
- CCTK_WARN(0,"You have tried to register more evolved "
+ CCTK_WARN(0,"You have tried to register more save and restore "
"complex array variables than the accumulator "
- "parameter MoL_Num_ComplexArrayEvolved_Variables "
+ "parameter MoL_Num_ComplexArraySaveAndRestore_Variables "
"allows. Check that you are accumulating onto this "
"parameter correctly");
}