destroy_ga_stencilelement Subroutine

private subroutine destroy_ga_stencilelement(me)

Arguments

Type IntentOptional Attributes Name
type(grw_stencilelementarray_type), intent(inout) :: me

Called by

proc~~destroy_ga_stencilelement~~CalledByGraph proc~destroy_ga_stencilelement destroy_ga_stencilelement interface~destroy~3 destroy interface~destroy~3->proc~destroy_ga_stencilelement

Contents


Source Code

  subroutine destroy_ga_stencilelement(me)
    type(grw_stencilelementarray_type), intent(inout) :: me !< dynamic array to destroy

    me%containersize = 0
    me%nvals = 0
    if( allocated( me%val ) ) deallocate(me%val)

  end subroutine destroy_ga_stencilelement