aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Startup.c')
-rw-r--r--src/Startup.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Startup.c b/src/Startup.c
index b8f92a8..f252a60 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -5,15 +5,16 @@
#include "cctk.h"
#include "cctk_parameters.h"
+#include "cctk_WarnLevel.h"
/* routine registers the SOR solver "sor_confmetric" under the name "sor"
with the Elliptic Class "LinConfMetric".
*/
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);
+ void sor_confmetric(cGH *GH, int *MetricPsiI, int FieldI, int MI,
+ int NI, CCTK_REAL *AbsTol, CCTK_REAL *RelTol);
+ void sor_flat(cGH *GH, int MI, int NI, CCTK_REAL *AbsTol, CCTK_REAL *RelTol);
DECLARE_CCTK_PARAMETERS