Subroutine to destroy an single array
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(ndarray_oc_factory), | intent(inout) | :: | this | |||
class(pf_encap_t), | intent(inout), | allocatable | :: | x | ||
integer, | intent(in) | :: | level | |||
integer, | intent(in) | :: | shape(:) |
subroutine ndarray_oc_destroy_single(this, x, level, shape)
class(ndarray_oc_factory), intent(inout) :: this
class(pf_encap_t), intent(inout), allocatable :: x
integer, intent(in ) :: level, shape(:)
select type (x)
class is (ndarray_oc)
deallocate(x%pflatarray)
deallocate(x%yflatarray)
deallocate(x%shape)
class default
stop "TYPE ERROR in ndarray_oc_destroy_single"
end select
deallocate(x)
end subroutine ndarray_oc_destroy_single