aboutsummaryrefslogtreecommitdiff
path: root/ML_ADMConstraints_MP/src/RegisterSymmetries.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ML_ADMConstraints_MP/src/RegisterSymmetries.cc')
-rw-r--r--ML_ADMConstraints_MP/src/RegisterSymmetries.cc39
1 files changed, 0 insertions, 39 deletions
diff --git a/ML_ADMConstraints_MP/src/RegisterSymmetries.cc b/ML_ADMConstraints_MP/src/RegisterSymmetries.cc
deleted file mode 100644
index f6cca33..0000000
--- a/ML_ADMConstraints_MP/src/RegisterSymmetries.cc
+++ /dev/null
@@ -1,39 +0,0 @@
-/* File produced by Kranc */
-
-#include "cctk.h"
-#include "cctk_Arguments.h"
-#include "cctk_Parameters.h"
-#include "Symmetry.h"
-
-extern "C" void ML_ADMConstraints_MP_RegisterSymmetries(CCTK_ARGUMENTS)
-{
- DECLARE_CCTK_ARGUMENTS;
- DECLARE_CCTK_PARAMETERS;
-
-
- /* array holding symmetry definitions */
- CCTK_INT sym[3];
-
-
- /* Register symmetries of grid functions */
- sym[0] = 1;
- sym[1] = 1;
- sym[2] = 1;
- SetCartSymVN(cctkGH, sym, "ML_ADMConstraints_MP::H");
-
- sym[0] = -1;
- sym[1] = 1;
- sym[2] = 1;
- SetCartSymVN(cctkGH, sym, "ML_ADMConstraints_MP::M1");
-
- sym[0] = 1;
- sym[1] = -1;
- sym[2] = 1;
- SetCartSymVN(cctkGH, sym, "ML_ADMConstraints_MP::M2");
-
- sym[0] = 1;
- sym[1] = 1;
- sym[2] = -1;
- SetCartSymVN(cctkGH, sym, "ML_ADMConstraints_MP::M3");
-
-}