expand_ga_stencilheader Subroutine

private subroutine expand_ga_stencilheader(me, pos, length)

Arguments

Type IntentOptional Attributes Name
type(grw_stencilheaderarray_type) :: me
integer, intent(in), optional :: pos
integer, intent(in), optional :: length

optional length to expand the array


Called by

proc~~expand_ga_stencilheader~~CalledByGraph proc~expand_ga_stencilheader expand_ga_stencilheader interface~expand~5 expand interface~expand~5->proc~expand_ga_stencilheader proc~append_ga_stencilelement append_ga_stencilelement proc~append_ga_stencilelement->interface~expand~5 proc~append_ga_stencilelement_vec append_ga_stencilelement_vec proc~append_ga_stencilelement_vec->interface~expand~5 proc~append_ga_stencilheader append_ga_stencilheader proc~append_ga_stencilheader->interface~expand~5 proc~append_ga_stencilheader_vec append_ga_stencilheader_vec proc~append_ga_stencilheader_vec->interface~expand~5 proc~placeat_ga_stencilelement placeat_ga_stencilelement proc~placeat_ga_stencilelement->interface~expand~5 proc~placeat_ga_stencilelement_vec placeat_ga_stencilelement_vec proc~placeat_ga_stencilelement_vec->interface~expand~5 proc~placeat_ga_stencilheader placeat_ga_stencilheader proc~placeat_ga_stencilheader->interface~expand~5 proc~placeat_ga_stencilheader_vec placeat_ga_stencilheader_vec proc~placeat_ga_stencilheader_vec->interface~expand~5 interface~append~5 append interface~append~5->proc~append_ga_stencilelement interface~append~5->proc~append_ga_stencilelement_vec interface~append~6 append interface~append~6->proc~append_ga_stencilheader interface~append~6->proc~append_ga_stencilheader_vec interface~placeat~4 placeat interface~placeat~4->proc~placeat_ga_stencilelement interface~placeat~4->proc~placeat_ga_stencilelement_vec interface~placeat~5 placeat interface~placeat~5->proc~placeat_ga_stencilheader interface~placeat~5->proc~placeat_ga_stencilheader_vec

Source Code

  subroutine expand_ga_stencilheader(me, pos, length)
    type(grw_stencilheaderarray_type) :: me !< array to resize
    integer, intent(in), optional :: pos !< optional predefined position
    !> optional length to expand the array
    integer, intent(in), optional :: length

    type(tem_stencilheader_type), allocatable :: swpval(:)
    integer :: explen, ii

    explen = 0
    ! increase the container by the requested length of double it
    if( present(length) ) then
      explen = max( length, minlength )
    else
      ! set the global minimum length, if doubling would be smaller than that
      explen = max(me%containersize, minlength)
    end if

    ! if a position is given, increase the container to at least the size to
    ! fit the position.
    if( present(pos) ) explen = max(explen, pos-me%containersize)

    ! if the current size plus explen exceeds the max container size,
    ! reduce the size to the max container size.
    if( (huge(me%containersize) - explen) <= me%containersize) then
      ! set max container size
      me%containersize = huge(me%containersize)
    else
      ! set the new container size
      me%containersize = me%containersize + explen
    end if

    if ( me%nvals > 0 ) then
      allocate(swpval(me%containersize))
      do ii = 1, me%nvals
        swpval(ii) = me%val(ii)
      end do
      call move_alloc( swpval, me%val )
    else ! me%nvals == 0
      if ( allocated(me%val) ) deallocate( me%val )
      allocate( me%val(me%containersize) )
    end if

  end subroutine expand_ga_stencilheader