Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(wf_t), | pointer | :: | p |
subroutine destroy_pswf(p)
type(wf_t), pointer :: p
type(wf_t), pointer :: q
do while (associated(p))
call destroy_radfunc(p%Phi)
q => p%next
deallocate(p)
p => q
enddo
end subroutine destroy_pswf