ESMF_GridMatchLessEqual Function

private function ESMF_GridMatchLessEqual(GridMatch1, GridMatch2)

Arguments

Type IntentOptional Attributes Name
type(ESMF_GridMatch_Flag), intent(in) :: GridMatch1
type(ESMF_GridMatch_Flag), intent(in) :: GridMatch2

Return Value logical


Source Code

      function ESMF_GridMatchLessEqual(GridMatch1, GridMatch2)

! !RETURN VALUE:
      logical :: ESMF_GridMatchLessEqual

! !ARGUMENTS:

      type (ESMF_GridMatch_Flag), intent(in) :: &
         GridMatch1,      &! Two GridMatch Statuses to compare for
         GridMatch2        ! inequality

! !DESCRIPTION:
!     This routine compares two ESMF GridMatch statuses to see if
!     they are unequal.
!
!     The arguments are:
!     \begin{description}
!     \item[GridMatch1, GridMatch2]
!          Two statuses of GridMatchs to compare
!     \end{description}
!
!EOPI

      ESMF_GridMatchLessEqual = (GridMatch1%gridmatch .le. &
                                 GridMatch2%gridmatch)

      end function ESMF_GridMatchLessEqual