Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_CplComp), | intent(in) | :: | cplcomp1 | |||
type(ESMF_CplComp), | intent(in) | :: | cplcomp2 |
impure elemental function ESMF_CplCompNE(cplcomp1, cplcomp2) ! ! !RETURN VALUE: logical :: ESMF_CplCompNE ! !ARGUMENTS: type(ESMF_CplComp), intent(in) :: cplcomp1 type(ESMF_CplComp), intent(in) :: cplcomp2 ! !DESCRIPTION: ! Test if both {\tt cplcomp1} and {\tt cplcomp2} alias the same ESMF CplComp ! object. ! !EOPI !------------------------------------------------------------------------------- ESMF_INIT_TYPE ccinit1, ccinit2 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_CplCompNE = .not.ESMF_CplCompEQ(cplcomp1, cplcomp2) end function ESMF_CplCompNE