aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlanfer <lanfer@fa3da13c-9f13-4301-a575-cf5b8c5e1907>1999-09-15 14:16:00 +0000
committerlanfer <lanfer@fa3da13c-9f13-4301-a575-cf5b8c5e1907>1999-09-15 14:16:00 +0000
commit86d2e7af6385658b4e1333bf3112dba138a858ae (patch)
treee6096e46087b47086c60f1771071335c9cedaa35
parentaca7515fbd057c50243ffc983b264820ab0bd4b3 (diff)
misc. cleanup
git-svn-id: http://svn.cactuscode.org/arrangements/CactusElliptic/EllSOR/trunk@7 fa3da13c-9f13-4301-a575-cf5b8c5e1907
-rw-r--r--src/Startup.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/Startup.c b/src/Startup.c
index b32d032..b8f92a8 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -13,8 +13,17 @@
void EllSOR_Register(cGH *GH) {
void sor_confmetric(cGH *GH, int *MetricPsiI, int *FieldI, int *MI,
int *NI, int *AbsTol, int *RelTol);
+ void sor_flat(cGH *GH, int *MI, int *NI, int *AbsTol, int *RelTol);
- printf("SOR: registering sor...");
+ DECLARE_CCTK_PARAMETERS
+
+ if (CCTK_Equals(elliptic_verbose,"yes"))
+ printf("SOR: Registering sor for Ell_LinConfMetric...\n");
Ell_RegisterSolver(sor_confmetric,"sor","Ell_LinConfMetric");
- printf("...done\n");
+
+ if (CCTK_Equals(elliptic_verbose,"yes"))
+ printf("SOR: Registering sor for Ell_LinFlat...\n");
+ Ell_RegisterSolver(sor_flat,"sor","Ell_LinFlat");
+
+
}