aboutsummaryrefslogtreecommitdiff
path: root/interface.ccl
diff options
context:
space:
mode:
authorschnetter <schnetter@1c20744c-e24a-42ec-9533-f5004cb800e5>2004-05-28 16:35:54 +0000
committerschnetter <schnetter@1c20744c-e24a-42ec-9533-f5004cb800e5>2004-05-28 16:35:54 +0000
commit6dcfcb4596bbd63f549a93135bc7bf9e739ce242 (patch)
treebc9370c4276adefbc0f3df2909532ef5058d0777 /interface.ccl
parent2e703e1d86f13b8a26b4358dc5d2f9af4b7ef440 (diff)
Use symmetry interpolation.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGHInterp/trunk@78 1c20744c-e24a-42ec-9533-f5004cb800e5
Diffstat (limited to 'interface.ccl')
-rw-r--r--interface.ccl41
1 files changed, 41 insertions, 0 deletions
diff --git a/interface.ccl b/interface.ccl
index 8c50ef4..adc69e5 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -2,3 +2,44 @@
# $Header$
Implements: Interp
+
+
+
+# Interpolation
+CCTK_INT FUNCTION \
+ SymmetryInterpolate \
+ (CCTK_POINTER_TO_CONST IN cctkGH, \
+ CCTK_INT IN N_dims, \
+ CCTK_INT IN local_interp_handle, \
+ CCTK_INT IN param_table_handle, \
+ CCTK_INT IN coord_system_handle, \
+ CCTK_INT IN N_interp_points, \
+ CCTK_INT IN interp_coords_type, \
+ CCTK_POINTER_TO_CONST ARRAY IN interp_coords, \
+ CCTK_INT IN N_input_arrays, \
+ CCTK_INT ARRAY IN input_array_indices, \
+ CCTK_INT IN N_output_arrays, \
+ CCTK_INT ARRAY IN output_array_types, \
+ CCTK_POINTER ARRAY IN output_arrays)
+USES FUNCTION SymmetryInterpolate
+
+
+
+CCTK_INT FUNCTION \
+ DriverInterpolate \
+ (CCTK_POINTER_TO_CONST IN cctkGH, \
+ CCTK_INT IN N_dims, \
+ CCTK_INT IN local_interp_handle, \
+ CCTK_INT IN param_table_handle, \
+ CCTK_INT IN coord_system_handle, \
+ CCTK_INT IN N_interp_points, \
+ CCTK_INT IN interp_coords_type, \
+ CCTK_POINTER_TO_CONST ARRAY IN interp_coords, \
+ CCTK_INT IN N_input_arrays, \
+ CCTK_INT ARRAY IN input_array_indices, \
+ CCTK_INT IN N_output_arrays, \
+ CCTK_INT ARRAY IN output_array_types, \
+ CCTK_POINTER ARRAY IN output_arrays)
+PROVIDES FUNCTION DriverInterpolate \
+ WITH PUGHInterp_DriverInterpolate \
+ LANGUAGE C