free_treelmesh Subroutine

public subroutine free_treelmesh(me)

Completely free the memory of the treelmesh again.

Arguments

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

Structure to free


Calls

proc~~free_treelmesh~~CallsGraph proc~free_treelmesh free_treelmesh proc~tem_global_mesh_free tem_global_mesh_free proc~free_treelmesh->proc~tem_global_mesh_free proc~unload_treelmesh unload_treelmesh proc~free_treelmesh->proc~unload_treelmesh

Source Code

  subroutine free_treelmesh(me)
    !> Structure to free
    type(treelmesh_type), intent(inout) :: me

    call unload_treelmesh(me)
    call tem_global_mesh_free(me%global)
  end subroutine free_treelmesh