aboutsummaryrefslogtreecommitdiff
path: root/src/classify.F90
blob: 43a08a422ad6941e4e38e7461632d05cb4c3e657 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
! $Header$

#include "cctk.h"

module classify
  implicit none
  
  interface
     elemental integer function TAT_isnan (x)
       implicit none
       CCTK_REAL, intent(in) :: x
     end function TAT_isnan
  end interface
  
  interface
     elemental integer function TAT_isinf (x)
       implicit none
       CCTK_REAL, intent(in) :: x
     end function TAT_isinf
  end interface
  
  interface
     elemental integer function TAT_finite (x)
       implicit none
       CCTK_REAL, intent(in) :: x
     end function TAT_finite
  end interface
  
end module classify