destroy_ga_ellipsoid Subroutine

private subroutine destroy_ga_ellipsoid(me)

Arguments

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

Called by

proc~~destroy_ga_ellipsoid~~CalledByGraph proc~destroy_ga_ellipsoid destroy_ga_ellipsoid interface~destroy~27 destroy interface~destroy~27->proc~destroy_ga_ellipsoid

Contents

Source Code


Source Code

  subroutine destroy_ga_ellipsoid(me)
    type(grw_ellipsoidarray_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_ellipsoid