aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Startup.c')
-rw-r--r--src/Startup.c46
1 files changed, 23 insertions, 23 deletions
diff --git a/src/Startup.c b/src/Startup.c
index 7f4249d..2cf60ea 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -34,25 +34,25 @@ CCTK_FILEVERSION(CactusElliptic_EllSOR_Startup_c)
void EllSOR_Register(CCTK_ARGUMENTS);
void SORConfMetric(cGH *GH,
- int *MetricPsiI,
- int FieldI,
- int MI,
- int NI,
- CCTK_REAL *AbsTol,
- CCTK_REAL *RelTol);
+ int *MetricPsiI,
+ int FieldI,
+ int MI,
+ int NI,
+ CCTK_REAL *AbsTol,
+ CCTK_REAL *RelTol);
void SORMetric(cGH *GH,
- int *MetricI,
- int FieldI,
- int MI,
- int NI,
- CCTK_REAL *AbsTol,
- CCTK_REAL *RelTol);
+ int *MetricI,
+ int FieldI,
+ int MI,
+ int NI,
+ CCTK_REAL *AbsTol,
+ CCTK_REAL *RelTol);
void SORFlat(cGH *GH,
- int FieldI,
- int MI,
- int NI,
- CCTK_REAL *AbsTol,
- CCTK_REAL *RelTol);
+ int FieldI,
+ int MI,
+ int NI,
+ CCTK_REAL *AbsTol,
+ CCTK_REAL *RelTol);
/********************************************************************
@@ -98,17 +98,17 @@ void EllSOR_Register(CCTK_ARGUMENTS)
int err;
if (Ell_RegisterSolver(SORConfMetric,"sor","Ell_LinConfMetric")
- != ELL_SUCCESS)
+ != ELL_SUCCESS)
{
CCTK_WARN(0,
- "EllSOR_Register: Failed to register sor for Ell_LinConfMetric");
+ "EllSOR_Register: Failed to register sor for Ell_LinConfMetric");
}
if (Ell_RegisterSolver(SORMetric,"sor","Ell_LinMetric")
- != ELL_SUCCESS)
+ != ELL_SUCCESS)
{
CCTK_WARN(0,
- "EllSOR_Register: Failed to register sor for Ell_LinMetric");
+ "EllSOR_Register: Failed to register sor for Ell_LinMetric");
}
if (Ell_RegisterSolver(SORFlat,"sor","Ell_LinFlat") != ELL_SUCCESS)
@@ -124,13 +124,13 @@ void EllSOR_Register(CCTK_ARGUMENTS)
if (err == ELLCREATE_FAILED)
{
CCTK_VWarn(1,__LINE__,__FILE__,CCTK_THORNSTRING,
- "EllSOR_Register: Failed to create key EllLinFlat::Bnd::Robin (Error %d)",err);
+ "EllSOR_Register: Failed to create key EllLinFlat::Bnd::Robin (Error %d)",err);
}
err = Ell_CreateKey(CCTK_VARIABLE_STRING,"EllLinFlat::Bnd::Const");
if (err == ELLCREATE_FAILED)
{
CCTK_WARN(1,
- "EllSOR_Register: Failed to create key EllLinFlat::Bnd::Const");
+ "EllSOR_Register: Failed to create key EllLinFlat::Bnd::Const");
}
/* Create a key for the maximum number of iterations allowed. */