aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
diff options
context:
space:
mode:
authorlanfer <lanfer@57bc7290-fb3d-4efd-a9b1-28e84cce6043>1999-09-03 17:57:57 +0000
committerlanfer <lanfer@57bc7290-fb3d-4efd-a9b1-28e84cce6043>1999-09-03 17:57:57 +0000
commitf2773b5206a6e0e980028995d33eb8bedc3a1f80 (patch)
tree8ffa279e7db6c22d7f15746b11c9b2bc75513935 /src/Startup.c
parent6a54afa9e7efa05ac1cd8ecd212cea4baa6d96ee (diff)
The CactusElliptic arrangement
git-svn-id: http://svn.cactuscode.org/arrangements/CactusElliptic/EllBase/trunk@2 57bc7290-fb3d-4efd-a9b1-28e84cce6043
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");
+
+}
+
+
+
+
+