init_ga_box Subroutine

private subroutine init_ga_box(me, length)

Arguments

Type IntentOptional Attributes Name
type(grw_boxarray_type), intent(out) :: me
integer, intent(in), optional :: length

Called by

proc~~init_ga_box~2~~CalledByGraph proc~init_ga_box~2 init_ga_box interface~init~36 init interface~init~36->proc~init_ga_box~2

Contents

Source Code


Source Code

  subroutine init_ga_box(me, length)
    type(grw_boxarray_type), intent(out) :: me !< dynamic array to init
    integer, intent(in), optional :: length !< initial length of the container

    if (present(length)) then
      me%containersize = length
    else
      me%containersize = zerolength
    end if
    ! deallocate ...
    if( allocated( me%val ))     &
      deallocate(me%val)
    ! ... and reallocate
    allocate(me%val(me%containersize))
    me%nvals = 0

  end subroutine init_ga_box