init_ga_label Subroutine

public subroutine init_ga_label(me, length)

Arguments

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

Called by

proc~~init_ga_label~~CalledByGraph proc~init_ga_label init_ga_label interface~init~16 init interface~init~16->proc~init_ga_label

Contents

Source Code


Source Code

  subroutine init_ga_label(me, length)
    type(grw_labelarray_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_label