lmdz_is_nan.F90 Source File


Files dependent on this one

sourcefile~~lmdz_is_nan.f90~~AfferentGraph sourcefile~lmdz_is_nan.f90 lmdz_is_nan.F90 sourcefile~checknanqfi.f90 checknanqfi.f90 sourcefile~checknanqfi.f90->sourcefile~lmdz_is_nan.f90 sourcefile~checknanqfi.f90~2 checknanqfi.f90 sourcefile~checknanqfi.f90~2->sourcefile~lmdz_is_nan.f90

Contents

Source Code


Source Code

MODULE lmdz_is_nan

CONTAINS

#ifdef CPP_USE_IEEE_IS_NAN  

  ELEMENTAL FUNCTION is_nan(x)
  USE, INTRINSIC :: ieee_arithmetic, ONLY : IEEE_IS_NAN
  IMPLICIT NONE
    REAL, INTENT(IN)    :: x  
    LOGICAL :: is_nan

    is_nan=IEEE_IS_NAN(x)

  END FUNCTION is_nan

#else
  ELEMENTAL FUNCTION is_nan(x)
  IMPLICIT NONE
    REAL, INTENT(IN)    :: x  
    LOGICAL :: is_nan

    is_nan=isnan(x)  
  END FUNCTION is_nan
#endif

END MODULE lmdz_is_nan