summaryrefslogtreecommitdiff
path: root/src/include/cctk_Interp.h
diff options
context:
space:
mode:
authorjthorn <jthorn@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-06-27 17:48:51 +0000
committerjthorn <jthorn@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-06-27 17:48:51 +0000
commit839720c3c3f4062ca9d10b5861b2e2688888edff (patch)
tree3d169c40bd47813b4c3714c0f8aa292353dcac3c /src/include/cctk_Interp.h
parent19cf7ac183c21897ff8afbf41ca8832924e7799c (diff)
slightly expand comments as to what the error codes
CCTK_ERROR_INTERP_POINT_OUTSIDE CCTK_ERROR_INTERP_POINT_X_RANGE CCTK_ERROR_INTERP_POINT_EXCISED mean: add text that they can also mean that an interpolation point is too close to the outside / excised region git-svn-id: http://svn.cactuscode.org/flesh/trunk@3244 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk_Interp.h')
-rw-r--r--src/include/cctk_Interp.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/include/cctk_Interp.h b/src/include/cctk_Interp.h
index 632f89a7..bc989998 100644
--- a/src/include/cctk_Interp.h
+++ b/src/include/cctk_Interp.h
@@ -155,12 +155,15 @@ int CCTK_InterpLocalUniform(int N_dims,
*/
#define CCTK_ERROR_INTERP_GHOST_SIZE_TOO_SMALL (-1001)
-/* an interpolation point is outside the input grid */
+/*
+ * an interpolation point is outside (or too close to an edge of)
+ * the input grid
+ */
#define CCTK_ERROR_INTERP_POINT_OUTSIDE (-1002)
/* ... old code for backwards compatability */
#define CCTK_ERROR_INTERP_POINT_X_RANGE CCTK_ERROR_INTERP_POINT_OUTSIDE
-/* an interpolation point is in an excised region */
+/* an interpolation point is in (or too close to) an excised region */
#define CCTK_ERROR_INTERP_POINT_EXCISED (-1003)
#ifdef __cplusplus