aboutsummaryrefslogtreecommitdiff
path: root/src/GeneralizedPolynomial-Uniform/template.h
diff options
context:
space:
mode:
authorjthorn <jthorn@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2003-07-06 11:39:36 +0000
committerjthorn <jthorn@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2003-07-06 11:39:36 +0000
commite9f00ac8be804694fed90fee6dfaa45f9438ebb8 (patch)
tree751937dea2db230245a372c7fc9d1e878352a2e8 /src/GeneralizedPolynomial-Uniform/template.h
parentdcba423b1b91d1b9dc3a4e7c3ac7812e30f1f00c (diff)
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
Diffstat (limited to 'src/GeneralizedPolynomial-Uniform/template.h')
-rw-r--r--src/GeneralizedPolynomial-Uniform/template.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/GeneralizedPolynomial-Uniform/template.h b/src/GeneralizedPolynomial-Uniform/template.h
deleted file mode 100644
index b5eb5b4..0000000
--- a/src/GeneralizedPolynomial-Uniform/template.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*@@
- @file template.h
- @date 22 Jan 2002
- @author Jonathan Thornburg
- @desc prototype for template function in "template.c"
- (also used for function pointers in "InterpLocalUniform.c")
- @enddesc
- @version $Header$
- @@*/
-int FUNCTION_NAME(/***** coordinate system *****/
- const CCTK_REAL coord_origin[],
- const CCTK_REAL coord_delta[],
- /***** interpolation points *****/
- int N_interp_points,
- int interp_coords_type_code,
- const void* const interp_coords[],
- const CCTK_INT N_boundary_points_to_omit[],
- const CCTK_REAL boundary_off_centering_tolerance[],
- const CCTK_REAL boundary_extrapolation_tolerance[],
- /***** input arrays *****/
- int N_input_arrays,
- const CCTK_INT input_array_offsets[],
- const CCTK_INT input_array_strides[],
- const CCTK_INT input_array_min_subscripts[],
- const CCTK_INT input_array_max_subscripts[],
- const CCTK_INT input_array_type_codes[],
- const void* const input_arrays[],
- /***** output arrays *****/
- int N_output_arrays,
- const CCTK_INT output_array_type_codes[],
- void* const output_arrays[],
- /***** operation info */
- const CCTK_INT operand_indices[],
- const CCTK_INT operation_codes[],
- /***** other return results *****/
- struct error_flags* error_flags,
- struct molecule_structure_flags* molecule_structure_flags,
- struct molecule_min_max_m_info* molecule_min_max_m_info,
- CCTK_INT* const molecule_positions[],
- struct Jacobian_info* Jacobian_info);