truncate_ga_dtint2d Subroutine

public subroutine truncate_ga_dtint2d(me)

Arguments

Type IntentOptional Attributes Name
type(grw_dtint2darray_type) :: me

Called by

proc~~truncate_ga_dtint2d~~CalledByGraph proc~truncate_ga_dtint2d truncate_ga_dtint2d interface~truncate~15 truncate interface~truncate~15->proc~truncate_ga_dtint2d

Contents

Source Code


Source Code

  subroutine truncate_ga_dtint2d(me)
    !------------------------------------------------------------------------
    type(grw_dtint2darray_type) :: me !< array to truncate
    !------------------------------------------------------------------------
    type(intarray2d_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_dtint2d