summaryrefslogtreecommitdiff
path: root/src/include/cctk_Interp.h
diff options
context:
space:
mode:
authorjthorn <jthorn@17b73243-c579-4c4c-a9d2-2d5706c11dac>2006-08-13 19:48:03 +0000
committerjthorn <jthorn@17b73243-c579-4c4c-a9d2-2d5706c11dac>2006-08-13 19:48:03 +0000
commit3da3e9782deb606d486be9bbe83f0a57040c51e3 (patch)
treec5ea55d700fa0add03238fb6ebd2fc9afb2beb8a /src/include/cctk_Interp.h
parentce3e13be8df82f677cd4994af30382fea9e9f872 (diff)
+= new interpolator error code
CCTK_ERROR_INTERP_COORD_NAN (needed for a bugfix in some other interpolator code) git-svn-id: http://svn.cactuscode.org/flesh/trunk@4362 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk_Interp.h')
-rw-r--r--src/include/cctk_Interp.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/cctk_Interp.h b/src/include/cctk_Interp.h
index ace23eeb..b20954c6 100644
--- a/src/include/cctk_Interp.h
+++ b/src/include/cctk_Interp.h
@@ -121,4 +121,8 @@ int CCTK_InterpLocalUniform (int N_dims,
/* an interpolation point is in (or too close to) an excised region */
#define CCTK_ERROR_INTERP_POINT_EXCISED (-1003)
+/* an interpolation coordinate (or some other intermediate value in the */
+/* interpolation process) was an IEEE NaN or other non-finite number */
+#define CCTK_ERROR_INTERP_COORD_NAN (-1004)
+
#endif /* _INTERP_H_ */