ESMF_GeomTypeNotEqual Function

private impure elemental function ESMF_GeomTypeNotEqual(GeomType1, GeomType2)

Arguments

Type IntentOptional Attributes Name
type(ESMF_GeomType_Flag), intent(in) :: GeomType1
type(ESMF_GeomType_Flag), intent(in) :: GeomType2

Return Value logical


Source Code

      impure elemental function ESMF_GeomTypeNotEqual(GeomType1, GeomType2)

! !RETURN VALUE:
      logical :: ESMF_GeomTypeNotEqual

! !ARGUMENTS:

      type (ESMF_GeomType_Flag), intent(in) :: &
         GeomType1,      &! Two GeomType Statuses to compare for
         GeomType2        ! inequality

! !DESCRIPTION:
!     This routine compares two ESMF GeomType statuses to see if
!     they are unequal.
!
!     The arguments are:
 !     \begin{description}
!     \item[GeomType1, GeomType2]
!          Two statuses of GeomTypes to compare for inequality
!     \end{description}
!
!EOPI

      ESMF_GeomTypeNotEqual = (GeomType1%type /= &
                                 GeomType2%type)

      end function ESMF_GeomTypeNotEqual