Deallocate storage space
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(rowblock_type), | intent(inout) | :: | self |
subroutine rb_deallocate(self)
implicit none
class(rowblock_type), intent(inout) :: self
if(allocated(self%data)) deallocate(self%data)
if(allocated(self%tmp_sum)) deallocate(self%tmp_sum)
end subroutine rb_deallocate