node Derived Type

type :: node


Components

Type Visibility Attributes Name Initial
integer(kind=ip), public, dimension(:), allocatable :: inext

the node connected to this one

integer(kind=ip), public, dimension(:), allocatable :: idist

distance to inext nodes


Source Code

type :: node
    integer(ip),dimension(:),allocatable :: inext !! the node connected to this one
    integer(ip),dimension(:),allocatable :: idist !! distance to inext nodes
end type node