You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
psblas3/base/serial/aux/zacmp_mod.f90

45 lines
874 B
Fortran

module zacmp_mod
interface operator(<)
module procedure zalt
end interface
interface operator(<=)
module procedure zale
end interface
interface operator(>)
module procedure zagt
end interface
interface operator(>=)
module procedure zage
end interface
contains
function zalt(a,b)
complex(kind(1.d0)), intent(in) :: a,b
logical :: zalt
zalt = (abs(a) < abs(b))
end function zalt
function zale(a,b)
complex(kind(1.d0)), intent(in) :: a,b
logical :: zale
zale = (abs(a) <= abs(b))
end function zale
function zagt(a,b)
complex(kind(1.d0)), intent(in) :: a,b
logical :: zagt
zagt = (abs(a) > abs(b))
end function zagt
function zage(a,b)
complex(kind(1.d0)), intent(in) :: a,b
logical :: zage
zage = (abs(a) >= abs(b))
end function zage
end module zacmp_mod