destroy_ga_line Subroutine

private subroutine destroy_ga_line(me)

Arguments

Type IntentOptional Attributes Name
type(grw_linearray_type), intent(inout) :: me

Called by

proc~~destroy_ga_line~~CalledByGraph proc~destroy_ga_line destroy_ga_line interface~destroy~37 destroy interface~destroy~37->proc~destroy_ga_line

Source Code

  subroutine destroy_ga_line(me)
    type(grw_linearray_type), intent(inout) :: me !< dynamic array to destroy

    me%containersize = 0
    me%nvals = 0
    if( allocated( me%val ) ) deallocate(me%val)

  end subroutine destroy_ga_line