whm_final_system Subroutine

public subroutine whm_final_system(self)

Finalize the WHM nbody system object - deallocates all allocatables

Arguments

TypeIntentOptionalAttributesName
type(whm_nbody_system), intent(inout) :: self

WHM nbody system object


Contents

Source Code


Source Code

      subroutine whm_final_system(self)
         !! author: David A. Minton
         !!
         !! Finalize the WHM nbody system object - deallocates all allocatables
         implicit none
         ! Arguments
         type(whm_nbody_system),  intent(inout) :: self 
            !! WHM nbody system object
         call self%dealloc()
         return
      end subroutine whm_final_system