set_undef Subroutine

public elemental subroutine set_undef(t)

Uses

  • proc~~set_undef~~UsesGraph proc~set_undef set_undef module~mapl_internalconstantsmod MAPL_InternalConstantsMod proc~set_undef->module~mapl_internalconstantsmod iso_fortran_env iso_fortran_env module~mapl_internalconstantsmod->iso_fortran_env

Arguments

Type IntentOptional Attributes Name
real(kind=ESMF_KIND_R4), intent(inout) :: t

Called by

proc~~set_undef~~CalledByGraph proc~set_undef set_undef proc~test_accumulate_mean_r4 test_accumulate_mean_R4 proc~test_accumulate_mean_r4->proc~set_undef proc~test_accumulate_r4 test_accumulate_R4 proc~test_accumulate_r4->proc~set_undef proc~test_accumulate_with_undef_some_steps test_accumulate_with_undef_some_steps proc~test_accumulate_with_undef_some_steps->proc~set_undef proc~test_max_accumulate_r4 test_max_accumulate_R4 proc~test_max_accumulate_r4->proc~set_undef proc~test_min_accumulate_r4 test_min_accumulate_R4 proc~test_min_accumulate_r4->proc~set_undef

Source Code

   elemental subroutine set_undef(t)
      use MAPL_InternalConstantsMod, only: MAPL_UNDEFINED_REAL
      real(kind=ESMF_KIND_R4), intent(inout) :: t

      t = MAPL_UNDEFINED_REAL

   end subroutine set_undef