Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions CDEPS-interface/ufs/cdeps_share/shr_infnan_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -317,11 +317,11 @@ elemental function shr_infnan_isposinf_double(x) result(isposinf)
use, intrinsic :: ieee_arithmetic, only: &
ieee_class, &
ieee_positive_inf, &
operator(==)
operator(.eq.)
real(r8), intent(in) :: x
logical :: isposinf

isposinf = (ieee_positive_inf == ieee_class(x))
isposinf = (ieee_positive_inf .eq. ieee_class(x))

# 202 "shr_infnan_mod.F90.in"
end function shr_infnan_isposinf_double
Expand All @@ -331,11 +331,11 @@ elemental function shr_infnan_isposinf_real(x) result(isposinf)
use, intrinsic :: ieee_arithmetic, only: &
ieee_class, &
ieee_positive_inf, &
operator(==)
operator(.eq.)
real(r4), intent(in) :: x
logical :: isposinf

isposinf = (ieee_positive_inf == ieee_class(x))
isposinf = (ieee_positive_inf .eq. ieee_class(x))

# 202 "shr_infnan_mod.F90.in"
end function shr_infnan_isposinf_real
Expand All @@ -346,11 +346,11 @@ elemental function shr_infnan_isneginf_double(x) result(isneginf)
use, intrinsic :: ieee_arithmetic, only: &
ieee_class, &
ieee_negative_inf, &
operator(==)
operator(.eq.)
real(r8), intent(in) :: x
logical :: isneginf

isneginf = (ieee_negative_inf == ieee_class(x))
isneginf = (ieee_negative_inf .eq. ieee_class(x))

# 215 "shr_infnan_mod.F90.in"
end function shr_infnan_isneginf_double
Expand All @@ -360,11 +360,11 @@ elemental function shr_infnan_isneginf_real(x) result(isneginf)
use, intrinsic :: ieee_arithmetic, only: &
ieee_class, &
ieee_negative_inf, &
operator(==)
operator(.eq.)
real(r4), intent(in) :: x
logical :: isneginf

isneginf = (ieee_negative_inf == ieee_class(x))
isneginf = (ieee_negative_inf .eq. ieee_class(x))

# 215 "shr_infnan_mod.F90.in"
end function shr_infnan_isneginf_real
Expand Down