summaryrefslogtreecommitdiff
path: root/src/comm
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-01-22 15:26:26 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-01-22 15:26:26 +0000
commitee71bfdfdce603fcfabcc7dcd090ee710a6b8f98 (patch)
tree208ef365c8e18ab4eab261687e6c06b829d088fd /src/comm
parentf6245308d18cb6b5aae149c6343b5896c6dda2a1 (diff)
Changed the order of function parameters in CCTK_InterpGridArrays().
Now it is consistent with the order used in CCTK_InterpLocalUniform(). git-svn-id: http://svn.cactuscode.org/flesh/trunk@3094 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/comm')
-rw-r--r--src/comm/Interp.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/comm/Interp.c b/src/comm/Interp.c
index ad255f7a..a31cbfb3 100644
--- a/src/comm/Interp.c
+++ b/src/comm/Interp.c
@@ -78,8 +78,8 @@ void CCTK_FCALL CCTK_FNAME (CCTK_InterpGridArrays)
(int *ierror,
const cGH *GH,
const int *N_dims,
- const int *param_table_handle,
const int *local_interp_handle,
+ const int *param_table_handle,
const int *coord_system_handle,
const int *N_interp_points,
const int *interp_coords_type,
@@ -1118,6 +1118,12 @@ void CCTK_FCALL CCTK_FNAME (CCTK_InterpLocal)
@vio in
@endvar
@endvar
+ @var local_interp_handle
+ @vdesc (reference to) the handle which specifies the local interpolator
+ to use
+ @vtype const int *
+ @vio in
+ @endvar
@var param_table_handle
@vdesc (reference to) the parameter table handle for passing optional
parameters to the interpolator routine
@@ -1185,8 +1191,8 @@ void CCTK_FCALL CCTK_FNAME (CCTK_InterpGridArrays)
(int *ierror,
const cGH *GH,
const int *N_dims,
- const int *param_table_handle,
const int *local_interp_handle,
+ const int *param_table_handle,
const int *coord_system_handle,
const int *N_interp_points,
const int *interp_coords_type,
@@ -1197,8 +1203,8 @@ void CCTK_FCALL CCTK_FNAME (CCTK_InterpGridArrays)
const CCTK_INT output_array_types[],
void *const output_arrays[])
{
- *ierror = CCTK_InterpGridArrays (GH, *N_dims, *param_table_handle,
- *local_interp_handle, *coord_system_handle,
+ *ierror = CCTK_InterpGridArrays (GH, *N_dims, *local_interp_handle,
+ *param_table_handle, *coord_system_handle,
*N_interp_points, *interp_coords_type,
interp_coords,
*N_input_arrays,input_array_indices,