DeepTest Subroutine

subroutine DeepTest(d, rc)

Arguments

Type IntentOptional Attributes Name
type(ESMF_Deep), intent(in) :: d
integer, intent(inout) :: rc

Source Code

         subroutine DeepTest(d,rc)
           type(ESMF_Deep), intent(in) :: d
           integer, intent(inout) :: rc
            
            ! init return code
            rc=ESMF_RC_NOT_IMPL

            ! check status
            ESMF_INIT_CHECK_DEEP(ESMF_DeepGetInitVal,d,rc)
            
            ! if we pass status check then return success
            rc=ESMF_SUCCESS
   
         end subroutine DeepTest