summaryrefslogtreecommitdiff
path: root/src/maximal_slicing_axi.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/maximal_slicing_axi.h')
-rw-r--r--src/maximal_slicing_axi.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/maximal_slicing_axi.h b/src/maximal_slicing_axi.h
deleted file mode 100644
index 22c1e0d..0000000
--- a/src/maximal_slicing_axi.h
+++ /dev/null
@@ -1,49 +0,0 @@
-
-#ifndef MAXIMAL_SLICING_AXI_H
-#define MAXIMAL_SLICING_AXI_H
-
-#include <inttypes.h>
-
-//#include <cl.h>
-
-#include "cctk.h"
-
-#include "ms_solve.h"
-
-#define SCALE_FACTOR scale_factor
-
-extern double scale_factor;
-
-/* precomputed values for a given refined grid */
-typedef struct CoordPatch {
- CCTK_REAL origin[3];
- CCTK_INT delta[3];
- CCTK_INT size[3];
-
- // basis values on the grid
- double *basis_val_r;
- double *basis_val_z;
-
- double *transform_z;
- double *transform_matrix;
- double *transform_matrix1;
- double *transform_tmp;
- double *one;
-
- int y_idx;
-} CoordPatch;
-
-typedef struct MaximalSlicingContext {
- MSSolver *solver;
- cGH *gh;
-
- uint64_t grid_expand_count;
- uint64_t grid_expand_time;
-
- CoordPatch *patches;
- int nb_patches;
-} MaximalSlicingContext;
-
-int msa_maximal_solve(MaximalSlicingContext *ms);
-
-#endif /* MAXIMAL_SLICING_AXI_H */