aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Startup.c')
-rw-r--r--src/Startup.c42
1 files changed, 25 insertions, 17 deletions
diff --git a/src/Startup.c b/src/Startup.c
index 6384fc1..c11ce66 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -24,33 +24,41 @@ void Ell_RegisterBaseEqTypes(cGH *GH)
int err;
- Ell_RegisterEq(Ell_LinConfMetricRegistry,"Ell_LinConfMetric");
+ Ell_RegisterEq(Ell_LinConfMetricRegistry, "Ell_LinConfMetric");
Ell_RegisterEq(Ell_BrBrConfMetricRegistry,"Ell_BrBrConfMetric");
Ell_RegisterEq(Ell_PolyConfMetricRegistry,"Ell_PolyConfMetric");
- Ell_RegisterEq(Ell_LinMetricRegistry,"Ell_LinMetric");
- Ell_RegisterEq(Ell_LinFlatRegistry,"Ell_LinFlat");
+ Ell_RegisterEq(Ell_LinMetricRegistry, "Ell_LinMetric");
+ Ell_RegisterEq(Ell_LinFlatRegistry, "Ell_LinFlat");
- /* Register boundary SOR can handle */
- err =
-
- err = Ell_CreateKey(CCTK_VARIABLE_STRING,"EllLinFlat::Bnd");
- err = Ell_CreateKey(CCTK_VARIABLE_STRING,"EllLinConfMetric::Bnd");
- err = Ell_CreateKey(CCTK_VARIABLE_STRING,"EllLinMetric::Bnd");
+ err = Ell_CreateKey(CCTK_VARIABLE_STRING,
+ "EllLinFlat::Bnd");
+ err = Ell_CreateKey(CCTK_VARIABLE_STRING,
+ "EllLinConfMetric::Bnd");
+ err = Ell_CreateKey(CCTK_VARIABLE_STRING,
+ "EllLinMetric::Bnd");
/* Register the variables needed to use these boundaries */
- err = Ell_CreateKey(CCTK_VARIABLE_REAL, "EllLinConfMetric::Bnd::Robin::inf");
- err = Ell_CreateKey(CCTK_VARIABLE_INT, "EllLinConfMetric::Bnd::Robin::falloff");
- err = Ell_CreateKey(CCTK_VARIABLE_REAL, "EllLinConfMetric::Bnd::Const::V0");
+ err = Ell_CreateKey(CCTK_VARIABLE_REAL,
+ "EllLinConfMetric::Bnd::Robin::inf");
+ err = Ell_CreateKey(CCTK_VARIABLE_INT,
+ "EllLinConfMetric::Bnd::Robin::falloff");
+ err = Ell_CreateKey(CCTK_VARIABLE_REAL,
+ "EllLinConfMetric::Bnd::Const::V0");
/* Register the variables needed to use these boundaries */
- err = Ell_CreateKey(CCTK_VARIABLE_REAL, "EllLinMetric::Bnd::Robin::inf");
- err = Ell_CreateKey(CCTK_VARIABLE_INT, "EllLinMetric::Bnd::Robin::falloff");
+ err = Ell_CreateKey(CCTK_VARIABLE_REAL,
+ "EllLinMetric::Bnd::Robin::inf");
+ err = Ell_CreateKey(CCTK_VARIABLE_INT,
+ "EllLinMetric::Bnd::Robin::falloff");
err = Ell_CreateKey(CCTK_VARIABLE_REAL, "EllLinMetric::Bnd::Const::V0");
/* Register the variables needed to use these boundaries */
- err = Ell_CreateKey(CCTK_VARIABLE_REAL, "EllLinFlat::Bnd::Robin::inf");
- err = Ell_CreateKey(CCTK_VARIABLE_INT, "EllLinFlat::Bnd::Robin::falloff");
- err = Ell_CreateKey(CCTK_VARIABLE_REAL, "EllLinFlat::Bnd::Const::V0");
+ err = Ell_CreateKey(CCTK_VARIABLE_REAL,
+ "EllLinFlat::Bnd::Robin::inf");
+ err = Ell_CreateKey(CCTK_VARIABLE_INT,
+ "EllLinFlat::Bnd::Robin::falloff");
+ err = Ell_CreateKey(CCTK_VARIABLE_REAL,
+ "EllLinFlat::Bnd::Const::V0");
}