aboutsummaryrefslogtreecommitdiff
path: root/src/IndexArrays.c
diff options
context:
space:
mode:
authorhawke <hawke@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2003-07-24 13:11:59 +0000
committerhawke <hawke@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2003-07-24 13:11:59 +0000
commitb18926e6de794bb786988f3f61b2943ffbd6da1a (patch)
tree3bfaebc25c4398b5ea2ae2a056cb0ab72bdce0f2 /src/IndexArrays.c
parent3b7f68b36f2f2ffd862234b6c5b9e70a37953f42 (diff)
Formatting changes only.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/MoL/trunk@32 578cdeb0-5ea1-4b81-8215-5a3b8777ee0b
Diffstat (limited to 'src/IndexArrays.c')
-rw-r--r--src/IndexArrays.c27
1 files changed, 18 insertions, 9 deletions
diff --git a/src/IndexArrays.c b/src/IndexArrays.c
index 8376c24..6862122 100644
--- a/src/IndexArrays.c
+++ b/src/IndexArrays.c
@@ -111,7 +111,8 @@ void MoL_SetupIndexArrays(CCTK_ARGUMENTS)
sizeof(CCTK_INT));
if (!SandRVariableIndex)
{
- CCTK_WARN(0,"Failed to allocate the save and restore variable index array");
+ CCTK_WARN(0,"Failed to allocate the save and restore "
+ "variable index array");
}
@@ -138,14 +139,16 @@ void MoL_SetupIndexArrays(CCTK_ARGUMENTS)
sizeof(CCTK_INT));
if (!ConstrainedComplexVariableIndex)
{
- CCTK_WARN(0,"Failed to allocate the constrained complex variable index array");
+ CCTK_WARN(0,"Failed to allocate the constrained complex "
+ "variable index array");
}
SandRComplexVariableIndex = (CCTK_INT *)malloc(MoL_Num_ComplexSaveAndRestore_Vars *
sizeof(CCTK_INT));
if (!SandRComplexVariableIndex)
{
- CCTK_WARN(0,"Failed to allocate the save and restore complex variable index array");
+ CCTK_WARN(0,"Failed to allocate the save and restore complex "
+ "variable index array");
}
@@ -172,14 +175,16 @@ void MoL_SetupIndexArrays(CCTK_ARGUMENTS)
sizeof(CCTK_INT));
if (!ConstrainedArrayVariableIndex)
{
- CCTK_WARN(0,"Failed to allocate the constrained array variable index array");
+ CCTK_WARN(0,"Failed to allocate the constrained array "
+ "variable index array");
}
SandRArrayVariableIndex = (CCTK_INT *)malloc(MoL_Num_ArraySaveAndRestore_Vars *
sizeof(CCTK_INT));
if (!SandRArrayVariableIndex)
{
- CCTK_WARN(0,"Failed to allocate the save and restore array variable index array");
+ CCTK_WARN(0,"Failed to allocate the save and restore "
+ "array variable index array");
}
@@ -192,28 +197,32 @@ void MoL_SetupIndexArrays(CCTK_ARGUMENTS)
sizeof(CCTK_INT));
if (!EvolvedComplexArrayVariableIndex)
{
- CCTK_WARN(0,"Failed to allocate the evolved complex array variable index array");
+ CCTK_WARN(0,"Failed to allocate the evolved complex "
+ "array variable index array");
}
RHSComplexArrayVariableIndex = (CCTK_INT *)malloc(MoL_Num_ComplexArrayEvolved_Vars *
sizeof(CCTK_INT));
if (!RHSComplexArrayVariableIndex)
{
- CCTK_WARN(0,"Failed to allocate the RHS complex array variable index array");
+ CCTK_WARN(0,"Failed to allocate the RHS complex array "
+ "variable index array");
}
ConstrainedComplexArrayVariableIndex = (CCTK_INT *)malloc(MoL_Num_ComplexArrayConstrained_Vars *
sizeof(CCTK_INT));
if (!ConstrainedComplexArrayVariableIndex)
{
- CCTK_WARN(0,"Failed to allocate the constrained complex array variable index array");
+ CCTK_WARN(0,"Failed to allocate the constrained complex "
+ "array variable index array");
}
SandRComplexArrayVariableIndex = (CCTK_INT *)malloc(MoL_Num_ComplexArraySaveAndRestore_Vars *
sizeof(CCTK_INT));
if (!SandRComplexArrayVariableIndex)
{
- CCTK_WARN(0,"Failed to allocate the save and restore complex array variable index array");
+ CCTK_WARN(0,"Failed to allocate the save and restore "
+ "complex array variable index array");
}
infoline = (char *)malloc((strlen(Generic_Method_Descriptor)+100)*