aboutsummaryrefslogtreecommitdiff
path: root/src/pughInterpGH.h
diff options
context:
space:
mode:
authortradke <tradke@1c20744c-e24a-42ec-9533-f5004cb800e5>2003-08-01 17:18:09 +0000
committertradke <tradke@1c20744c-e24a-42ec-9533-f5004cb800e5>2003-08-01 17:18:09 +0000
commit77a3b86574aa1eb4a09e5093939dd1027902d151 (patch)
treee3e89cdb6f19656c8d780bfb0267c0749d048ed9 /src/pughInterpGH.h
parent39d8ed7686f8a8cb524cf98211a800ce6c282437 (diff)
Removed duplicate code for the old CCTK_InterpLocal() API (which is now
in CactusBase/LocalInterp). PUGHInterp's implementation of the old CCTK_InterpGV() API is now just a wrapper for CCTK_InterpGridArrays(). git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGHInterp/trunk@71 1c20744c-e24a-42ec-9533-f5004cb800e5
Diffstat (limited to 'src/pughInterpGH.h')
-rw-r--r--src/pughInterpGH.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/pughInterpGH.h b/src/pughInterpGH.h
index e25b4f6..871cf22 100644
--- a/src/pughInterpGH.h
+++ b/src/pughInterpGH.h
@@ -47,33 +47,6 @@ int PUGHInterp_InterpGridArrays (const cGH *GH,
const CCTK_INT output_array_types[],
void *const output_arrays[]);
-/* prototypes of interpolation operators to be registered */
-int PUGHInterp_InterpGV (cGH *GH,
- int order,
- const char *coord_system,
- int num_points,
- int num_in_array_indices,
- int num_out_arrays,
- const void *const interp_coord_arrays[],
- const int interp_coord_array_types[],
- const int in_array_indices[],
- void *const out_arrays[],
- const int out_array_types[]);
-
-/* prototypes of routines used internally */
-int PUGHInterp_Interpolate (int order,
- int num_points,
- int num_dims,
- int num_arrays,
- const int dims[ /* num_dims */ ],
- const CCTK_REAL coord[ /* num_dims*num_points */ ],
- const CCTK_REAL origin[ /* num_dims */ ],
- const CCTK_REAL delta[ /* num_dims */ ],
- const int in_types[ /* num_arrays */ ],
- const void *const in_arrays[ /* num_arrays */ ],
- const int out_types[ /* num_arrays */ ],
- void *const out_arrays[ /* num_arrays */ ]);
-
#ifdef __cplusplus
} // extern "C"
#endif