aboutsummaryrefslogtreecommitdiff
path: root/src/GeneralizedPolynomial-Uniform/1d.cube.order5.smooth0.c
diff options
context:
space:
mode:
authorjthorn <jthorn@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2002-08-18 15:12:49 +0000
committerjthorn <jthorn@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2002-08-18 15:12:49 +0000
commit15c98b3abee2525b24ca89932256ff2cda63c9bc (patch)
treefba7c114f0b5e7ffdad3e60254fd0e8dd1e42f97 /src/GeneralizedPolynomial-Uniform/1d.cube.order5.smooth0.c
parent7be0a94bec4b4e89c433e5380fce2cf84e5e0681 (diff)
This commit reorganizes the Maple scripts which generate the interpolation
coefficients, and the coefficient files themselves, to properly support multiple interpolation operators, and adds some skeleton support for Hermite interpolation. I will add full support for Hermite in a future checkin. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/LocalInterp/trunk@81 df1f8a13-aa1d-4dd4-9681-27ded5b42416
Diffstat (limited to 'src/GeneralizedPolynomial-Uniform/1d.cube.order5.smooth0.c')
-rw-r--r--src/GeneralizedPolynomial-Uniform/1d.cube.order5.smooth0.c45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/GeneralizedPolynomial-Uniform/1d.cube.order5.smooth0.c b/src/GeneralizedPolynomial-Uniform/1d.cube.order5.smooth0.c
deleted file mode 100644
index 9e57977..0000000
--- a/src/GeneralizedPolynomial-Uniform/1d.cube.order5.smooth0.c
+++ /dev/null
@@ -1,45 +0,0 @@
-#include <math.h>
-#include <limits.h>
-#include <stdlib.h>
-#include <string.h>
-#include <stdio.h>
-
-#include "util_ErrorCodes.h"
-#include "cctk.h"
-#include "InterpLocalUniform.h"
-
-/* function prototype */
-#define FUNCTION_NAME LocalInterp_ILU_1d_cube_o5_s0
-#include "template.h"
-
-#define N_DIMS 1
-#define MOLECULE_MIN_M -2
-#define MOLECULE_MAX_M 3
-#define MOLECULE_SIZE 6
-
-/* which derivative ops do we support? */
-#define HAVE_OP_I
-#define HAVE_OP_DX
-#define HAVE_OP_DXX
-
-#define DATA_VAR_DCL_FILE_NAME "1d.coeffs/1d.cube.size6/data-var.dcl.c"
-#define DATA_VAR_ASSIGN_FILE_NAME "1d.coeffs/1d.cube.size6/data-var.assign.c"
-
-#define COEFF_I_VAR_STORE_FILE_NAME "1d.coeffs/1d.cube.size6/coeff-I.store.c"
-#define COEFF_DX_VAR_STORE_FILE_NAME "1d.coeffs/1d.cube.size6/coeff-dx.store.c"
-#define COEFF_DXX_VAR_STORE_FILE_NAME "1d.coeffs/1d.cube.size6/coeff-dxx.store.c"
-
-#define COEFF_I_DCL_FILE_NAME "1d.coeffs/1d.cube.size6/coeff-I.dcl.c"
-#define COEFF_DX_DCL_FILE_NAME "1d.coeffs/1d.cube.size6/coeff-dx.dcl.c"
-#define COEFF_DXX_DCL_FILE_NAME "1d.coeffs/1d.cube.size6/coeff-dxx.dcl.c"
-
-#define INTERP_I_COMPUTE_FILE_NAME "1d.coeffs/1d.cube.size6/interp-I.compute.c"
-#define INTERP_DX_COMPUTE_FILE_NAME "1d.coeffs/1d.cube.size6/interp-dx.compute.c"
-#define INTERP_DXX_COMPUTE_FILE_NAME "1d.coeffs/1d.cube.size6/interp-dxx.compute.c"
-
-#define COEFF_I_COMPUTE_FILE_NAME "1d.coeffs/1d.cube.order5.smooth0/coeff-I.compute.c"
-#define COEFF_DX_COMPUTE_FILE_NAME "1d.coeffs/1d.cube.order5.smooth0/coeff-dx.compute.c"
-#define COEFF_DXX_COMPUTE_FILE_NAME "1d.coeffs/1d.cube.order5.smooth0/coeff-dxx.compute.c"
-
-/* actual code */
-#include "template.c"