tem_halo_destroy Subroutine

public subroutine tem_halo_destroy(me)

Destroy the list of halo elements.

Arguments

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

The list of halo elements to destroy.


Source Code

  subroutine tem_halo_destroy(me)
    !> The list of halo elements to destroy.
    type(tem_haloList_type), intent(inout) :: me

    call destroy(me%partnerProc)
    call destroy(me%halos)
  end subroutine tem_halo_destroy