aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Startup.c')
-rw-r--r--src/Startup.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/Startup.c b/src/Startup.c
new file mode 100644
index 0000000..71dce6b
--- /dev/null
+++ b/src/Startup.c
@@ -0,0 +1,26 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "cctk.h"
+#include "cctk_parameters.h"
+
+void Ell_RegisterBaseEqTypes(cGH *GH) {
+ void Ell_RegisterEq(void (*function),const char *);
+ void Ell_LinConfMetricRegistry(void (*function),const char *);
+ void Ell_LinMetricRegistry(void (*function),const char *);
+
+ printf("Registering Ell_LinConfMetric....");
+ Ell_RegisterEq(Ell_LinConfMetricRegistry,"Ell_LinConfMetric");
+ printf("...done\n");
+
+ printf("Registering Ell_LinMetric....");
+ Ell_RegisterEq(Ell_LinMetricRegistry,"Ell_LinMetric");
+ printf("...done\n");
+
+}
+
+
+
+
+