rmvs_final_interp Subroutine

public subroutine rmvs_final_interp(self)

Finalize the RMVS nbody system object - deallocates all allocatables

Arguments

Type IntentOptional Attributes Name
type(rmvs_interp), intent(inout) :: self

RMVS nbody system object


Calls

proc~~rmvs_final_interp~~CallsGraph proc~rmvs_final_interp rmvs_final_interp interface~rmvs_util_dealloc_interp rmvs_interp%rmvs_util_dealloc_interp proc~rmvs_final_interp->interface~rmvs_util_dealloc_interp

Source Code

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