Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_Grid), | intent(in) | :: | grid1 | |||
type(ESMF_Grid), | intent(in) | :: | grid2 |
impure elemental function ESMF_GridNE(grid1, grid2) ! ! !RETURN VALUE: logical :: ESMF_GridNE ! !ARGUMENTS: type(ESMF_Grid), intent(in) :: grid1 type(ESMF_Grid), intent(in) :: grid2 ! !DESCRIPTION: ! Test if both {\tt grid1} and {\tt grid2} alias the same ESMF Grid ! object. ! !EOPI !------------------------------------------------------------------------------- ESMF_INIT_TYPE ginit1, ginit2 integer :: localrc1, localrc2 logical :: lval1, lval2 ! Use the following logic, rather than "ESMF-INIT-CHECK-DEEP", to gain ! init checks on both args, and in the case where both are uninitialized, ! to distinguish equality based on uninitialized type (uncreated, ! deleted). ESMF_GridNE = .not.ESMF_GridEQ(grid1, grid2) end function ESMF_GridNE