append_ga_ellipsoid_vec Subroutine

private subroutine append_ga_ellipsoid_vec(me, val, length)

Arguments

Type IntentOptional Attributes Name
type(grw_ellipsoidarray_type) :: me
type(tem_ellipsoid_type), intent(in) :: val(:)
integer, intent(in), optional :: length

optional length to expand the array


Calls

proc~~append_ga_ellipsoid_vec~~CallsGraph proc~append_ga_ellipsoid_vec append_ga_ellipsoid_vec interface~expand~27 expand proc~append_ga_ellipsoid_vec->interface~expand~27 proc~expand_ga_ellipsoid expand_ga_ellipsoid interface~expand~27->proc~expand_ga_ellipsoid

Called by

proc~~append_ga_ellipsoid_vec~~CalledByGraph proc~append_ga_ellipsoid_vec append_ga_ellipsoid_vec interface~append~28 append interface~append~28->proc~append_ga_ellipsoid_vec

Contents


Source Code

  subroutine append_ga_ellipsoid_vec(me, val, length)
    type(grw_ellipsoidarray_type) :: me !< array to append the value to
    type(tem_ellipsoid_type), intent(in) :: val(:) !< values to append
    !> optional length to expand the array
    integer, intent(in), optional :: length

    integer :: lb, ub, ii

    if (me%nvals == huge(me%nvals)) then
      write(*,*) "reached end of integer range for growing array!"
      write(*,*) "aborting!!"
      stop
    end if

    lb = me%nvals + 1
    ub = lb + size(val) - 1

    if (ub > me%containersize) then
      ! expand the array, if its boundary is reached
      call expand(me = me, pos = ub, length = length)
    end if

    me%nvals = max( ub, me%nvals )
    do ii = lb, ub
      me%val(ii) = val(1+ii-lb)
    end do

  end subroutine append_ga_ellipsoid_vec