Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_GridMatch_Flag), | intent(in) | :: | GridMatch1 | |||
type(ESMF_GridMatch_Flag), | intent(in) | :: | GridMatch2 |
function ESMF_GridMatchLess(GridMatch1, GridMatch2) ! !RETURN VALUE: logical :: ESMF_GridMatchLess ! !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 for inequality ! \end{description} ! !EOPI ESMF_GridMatchLess = (GridMatch1%gridmatch .lt. & GridMatch2%gridmatch) end function ESMF_GridMatchLess