aboutsummaryrefslogtreecommitdiff
path: root/src/RKCoefficients.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/RKCoefficients.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/RKCoefficients.c')
-rw-r--r--src/RKCoefficients.c27
1 files changed, 18 insertions, 9 deletions
diff --git a/src/RKCoefficients.c b/src/RKCoefficients.c
index cae00b2..1f0412d 100644
--- a/src/RKCoefficients.c
+++ b/src/RKCoefficients.c
@@ -96,7 +96,8 @@ int MoL_SetupRKCoefficients(CCTK_ARGUMENTS)
{
if (MoL_Num_Scratch_Levels < MoL_Intermediate_Steps - 1)
{
- CCTK_WARN(0, "For generic RK methods, MoL_Num_Scratch_Levels should be at least MoL_Intermediate_Steps - 1");
+ CCTK_WARN(0, "For generic RK methods, MoL_Num_Scratch_Levels "
+ "should be at least MoL_Intermediate_Steps - 1");
}
for (i = 0; i < MoL_Intermediate_Steps; i++)
{
@@ -147,20 +148,23 @@ int MoL_SetupRKCoefficients(CCTK_ARGUMENTS)
}
else
{
- CCTK_WARN(0, "RKCoefficients cannot do generic RK methods with MoL_Intermediate_Steps greater than 4");
+ CCTK_WARN(0, "RKCoefficients cannot do generic RK methods "
+ "with MoL_Intermediate_Steps greater than 4");
}
}
else if (CCTK_Equals(Generic_Type,"Table"))
{
if (MoL_Num_Scratch_Levels < MoL_Intermediate_Steps - 1)
{
- CCTK_WARN(0, "For generic methods, MoL_Num_Scratch_Levels should be at least MoL_Intermediate_Steps - 1");
+ CCTK_WARN(0, "For generic methods, MoL_Num_Scratch_Levels "
+ "should be at least MoL_Intermediate_Steps - 1");
}
options_table =
Util_TableCreateFromString(Generic_Method_Descriptor);
if (options_table < 0)
{
- CCTK_WARN(0, "Failed to create table from Generic_Method_Descriptor!");
+ CCTK_WARN(0, "Failed to create table from "
+ "Generic_Method_Descriptor!");
}
ierr = Util_TableGetRealArray(options_table,
(MoL_Num_Scratch_Levels + 1) *
@@ -171,11 +175,13 @@ int MoL_SetupRKCoefficients(CCTK_ARGUMENTS)
{
if (ierr >= 0)
{
- CCTK_WARN(0, "Insufficient elements in the specified GenericAlphaCoeffs array");
+ CCTK_WARN(0, "Insufficient elements in the specified "
+ "GenericAlphaCoeffs array");
}
else if (ierr == UTIL_ERROR_TABLE_NO_SUCH_KEY)
{
- CCTK_WARN(0, "When using the generic table options you must set \"GenericAlphaCoeffs\" in the options table");
+ CCTK_WARN(0, "When using the generic table options you "
+ "must set \"GenericAlphaCoeffs\" in the options table");
}
else
{
@@ -190,11 +196,13 @@ int MoL_SetupRKCoefficients(CCTK_ARGUMENTS)
{
if (ierr >= 0)
{
- CCTK_WARN(0, "Insufficient elements in the specified GenericBetaCoeffs array");
+ CCTK_WARN(0, "Insufficient elements in the specified "
+ "GenericBetaCoeffs array");
}
else if (ierr == UTIL_ERROR_TABLE_NO_SUCH_KEY)
{
- CCTK_WARN(0, "When using the generic table options you must set \"GenericBetaCoeffs\" in the options table");
+ CCTK_WARN(0, "When using the generic table options you "
+ "must set \"GenericBetaCoeffs\" in the options table");
}
else
{
@@ -205,7 +213,8 @@ int MoL_SetupRKCoefficients(CCTK_ARGUMENTS)
}
else
{
- CCTK_WARN(0, "RKCoefficients does not recognize the value of Generic_Type");
+ CCTK_WARN(0, "RKCoefficients does not recognize the value "
+ "of Generic_Type");
}
return 0;