aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschnetter <schnetter@b716e942-a2de-43ad-8f52-f3dfe468e4e7>2006-10-27 07:48:10 +0000
committerschnetter <schnetter@b716e942-a2de-43ad-8f52-f3dfe468e4e7>2006-10-27 07:48:10 +0000
commita62fe070e3183ac5531dbc79b2a8d5f35e5affa3 (patch)
treea93922851b16dd9454eea2b49e1a2849beea8173
parentfccd4b554cb73524f91ccbf44a359c47d9ef0d42 (diff)
Remove file; has isnan.c been renamed to classify.c.
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinUtils/TGRtensor/trunk@43 b716e942-a2de-43ad-8f52-f3dfe468e4e7
-rw-r--r--src/isnan.c41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/isnan.c b/src/isnan.c
deleted file mode 100644
index 2034748..0000000
--- a/src/isnan.c
+++ /dev/null
@@ -1,41 +0,0 @@
-/* $Header$ */
-
-#include <math.h>
-
-#include "cctk.h"
-
-int CCTK_FCALL CCTK_FNAME(TAT_finite) (const CCTK_REAL * restrict const x)
-{
-#ifdef HAVE_FINITE
- return finite(*x);
-#else
- return 1;
-#endif
-}
-
-int CCTK_FCALL CCTK_FNAME(TAT_isinf) (const CCTK_REAL * restrict const x)
-{
-#ifdef HAVE_ISINF
- return isinf(*x);
-#else
- return 0;
-#endif
-}
-
-int CCTK_FCALL CCTK_FNAME(TAT_isnan) (const CCTK_REAL * restrict const x)
-{
-#ifdef HAVE_ISNAN
- return isnan(*x);
-#else
- return 0;
-#endif
-}
-
-int CCTK_FCALL CCTK_FNAME(TAT_isnormal) (const CCTK_REAL * restrict const x)
-{
-#ifdef HAVE_ISNORMAL
- return isnormal(*x);
-#else
- return 0;
-#endif
-}