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