truncate_ga_grw_stencilelement Subroutine

private subroutine truncate_ga_grw_stencilelement(me)

Arguments

Type IntentOptional Attributes Name
type(grw_grw_stencilelementarray_type) :: me

Called by

proc~~truncate_ga_grw_stencilelement~~CalledByGraph proc~truncate_ga_grw_stencilelement truncate_ga_grw_stencilelement interface~truncate~18 truncate interface~truncate~18->proc~truncate_ga_grw_stencilelement

Contents


Source Code

  subroutine truncate_ga_grw_stencilelement(me)
    !------------------------------------------------------------------------
    type(grw_grw_stencilelementarray_type) :: me !< array to truncate
    !------------------------------------------------------------------------
    type(grw_stencilelementarray_type), allocatable :: tarray(:)
    !------------------------------------------------------------------------
    integer :: ii
    !------------------------------------------------------------------------

    ! nothing to do if container size is not larger than the number of values
    ! in the array.
    if (me%containersize > me%nvals) then
      allocate(tarray(me%nvals))
      do ii = 1, me%nvals
        tarray(ii) = me%val(ii)
      end do
      call move_alloc(tarray, me%val)
      me%containersize = me%nvals
    end if

  end subroutine truncate_ga_grw_stencilelement