ESMF_HConfigMatch_FlagGE Function

private function ESMF_HConfigMatch_FlagGE(hcmt1, hcmt2)

Arguments

Type IntentOptional Attributes Name
type(ESMF_HConfigMatch_Flag), intent(in) :: hcmt1
type(ESMF_HConfigMatch_Flag), intent(in) :: hcmt2

Return Value logical


Called by

proc~~esmf_hconfigmatch_flagge~~CalledByGraph proc~esmf_hconfigmatch_flagge ESMF_HConfigMatch_FlagGE interface~operator(gt=) operator(>=) interface~operator(gt=)->proc~esmf_hconfigmatch_flagge

Source Code

  function ESMF_HConfigMatch_FlagGE(hcmt1, hcmt2)
!
! !RETURN VALUE:
    logical :: ESMF_HConfigMatch_FlagGE

! !ARGUMENTS:
    type(ESMF_HConfigMatch_Flag), intent(in) :: hcmt1
    type(ESMF_HConfigMatch_Flag), intent(in) :: hcmt2

! !DESCRIPTION:
!
!EOPI
!-------------------------------------------------------------------------------

    ESMF_HConfigMatch_FlagGE = hcmt1%value .ge. hcmt2%value

  end function ESMF_HConfigMatch_FlagGE