Deallocates all allocatables
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(base_parameters), | intent(inout) | :: | self |
Collection of parameters |
subroutine base_util_dealloc_param(self) !! author: David A. Minton !! !! Deallocates all allocatables implicit none ! Arguments class(base_parameters),intent(inout) :: self !! Collection of parameters if (allocated(self%seed)) deallocate(self%seed) return end subroutine base_util_dealloc_param