From e9f00ac8be804694fed90fee6dfaa45f9438ebb8 Mon Sep 17 00:00:00 2001 From: jthorn Date: Sun, 6 Jul 2003 11:39:36 +0000 Subject: Remove Jonathan Thornburg's interpolator (which is GPL and thus not allowed to be in CactusBase; it now lives in AEIThorns/AEILocalInterp/) so this thorn contains only the interpolator written by Thomas Radke in early 2001. The files for this interpolator are now in src/ ; before this commit they were in src/UniformCartesian/ . git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/LocalInterp/trunk@154 df1f8a13-aa1d-4dd4-9681-27ded5b42416 --- src/GeneralizedPolynomial-Uniform/common/2d.maple | 117 ---------------------- 1 file changed, 117 deletions(-) delete mode 100644 src/GeneralizedPolynomial-Uniform/common/2d.maple (limited to 'src/GeneralizedPolynomial-Uniform/common/2d.maple') diff --git a/src/GeneralizedPolynomial-Uniform/common/2d.maple b/src/GeneralizedPolynomial-Uniform/common/2d.maple deleted file mode 100644 index d52c914..0000000 --- a/src/GeneralizedPolynomial-Uniform/common/2d.maple +++ /dev/null @@ -1,117 +0,0 @@ -# Maple code to compute common coefficients for all 2d interpolation schemes -# $Header$ - -################################################################################ - -# -# generic stuff for 2d, cube, size=2 -# - -data_list_2d_size2 := map(data_var_name, posn_list_2d_size2, "data_"); -coeffs_list_2d_size2 := map(coeff_name, posn_list_2d_size2, "coeff_"); - -print_name_list_dcl(data_list_2d_size2, "fp", - "2d.cube.size2/data-dcl.h"); -print_name_list_dcl(coeffs_list_2d_size2, "fp", - "2d.cube.size2/coeffs-dcl.h"); - -print_fetch_data(posn_list_2d_size2, "data->data_", - "2d.cube.size2/fetch-data.c"); -print_evaluate_molecule(posn_list_2d_size2, - "coeffs->coeff_", "data->data_", - "2d.cube.size2/evaluate-molecule.c"); -print_store_coeffs(posn_list_2d_size2, - "factor * coeffs->coeff_", - "2d.cube.size2/store-coeffs.c"); - -################################################################################ - -# -# generic stuff for 2d, cube, size=3 -# - -data_list_2d_size3 := map(data_var_name, posn_list_2d_size3, "data_"); -coeffs_list_2d_size3 := map(coeff_name, posn_list_2d_size3, "coeff_"); - -print_name_list_dcl(data_list_2d_size3, "fp", - "2d.cube.size3/data-dcl.h"); -print_name_list_dcl(coeffs_list_2d_size3, "fp", - "2d.cube.size3/coeffs-dcl.h"); - -print_fetch_data(posn_list_2d_size3, "data->data_", - "2d.cube.size3/fetch-data.c"); -print_evaluate_molecule(posn_list_2d_size3, - "coeffs->coeff_", "data->data_", - "2d.cube.size3/evaluate-molecule.c"); -print_store_coeffs(posn_list_2d_size3, - "factor * coeffs->coeff_", - "2d.cube.size3/store-coeffs.c"); - -################################################################################ - -# -# generic stuff for 2d, cube, size=4 -# - -data_list_2d_size4 := map(data_var_name, posn_list_2d_size4, "data_"); -coeffs_list_2d_size4 := map(coeff_name, posn_list_2d_size4, "coeff_"); - -print_name_list_dcl(data_list_2d_size4, "fp", - "2d.cube.size4/data-dcl.h"); -print_name_list_dcl(coeffs_list_2d_size4, "fp", - "2d.cube.size4/coeffs-dcl.h"); - -print_fetch_data(posn_list_2d_size4, "data->data_", - "2d.cube.size4/fetch-data.c"); -print_evaluate_molecule(posn_list_2d_size4, - "coeffs->coeff_", "data->data_", - "2d.cube.size4/evaluate-molecule.c"); -print_store_coeffs(posn_list_2d_size4, - "factor * coeffs->coeff_", - "2d.cube.size4/store-coeffs.c"); - -################################################################################ - -# -# generic stuff for 2d, cube, size=5 -# - -data_list_2d_size5 := map(data_var_name, posn_list_2d_size5, "data_"); -coeffs_list_2d_size5 := map(coeff_name, posn_list_2d_size5, "coeff_"); - -print_name_list_dcl(data_list_2d_size5, "fp", - "2d.cube.size5/data-dcl.h"); -print_name_list_dcl(coeffs_list_2d_size5, "fp", - "2d.cube.size5/coeffs-dcl.h"); - -print_fetch_data(posn_list_2d_size5, "data->data_", - "2d.cube.size5/fetch-data.c"); -print_evaluate_molecule(posn_list_2d_size5, - "coeffs->coeff_", "data->data_", - "2d.cube.size5/evaluate-molecule.c"); -print_store_coeffs(posn_list_2d_size5, - "factor * coeffs->coeff_", - "2d.cube.size5/store-coeffs.c"); - -################################################################################ - -# -# generic stuff for 2d, cube, size=6 -# - -data_list_2d_size6 := map(data_var_name, posn_list_2d_size6, "data_"); -coeffs_list_2d_size6 := map(coeff_name, posn_list_2d_size6, "coeff_"); - -print_name_list_dcl(data_list_2d_size6, "fp", - "2d.cube.size6/data-dcl.h"); -print_name_list_dcl(coeffs_list_2d_size6, "fp", - "2d.cube.size6/coeffs-dcl.h"); - -print_fetch_data(posn_list_2d_size6, "data->data_", - "2d.cube.size6/fetch-data.c"); -print_evaluate_molecule(posn_list_2d_size6, - "coeffs->coeff_", "data->data_", - "2d.cube.size6/evaluate-molecule.c"); -print_store_coeffs(posn_list_2d_size6, - "factor * coeffs->coeff_", - "2d.cube.size6/store-coeffs.c"); -- cgit v1.2.3