nonlocal_t Derived Type

type, public :: nonlocal_t


Contents

Source Code


Components

TypeVisibility AttributesNameInitial
type(nlpj_t), public, pointer:: proj=> null()
integer, public :: set
type(Grid), public :: grid
type(ps_annotation_t), public :: annotation
type(nonlocal_t), public, pointer:: next=> null()

Source Code

type, public :: nonlocal_t
   type(nlpj_t), pointer :: proj => null()
   integer           :: set
   !
   ! Optional private grid
   !
   type(Grid)                               :: grid
   type(ps_annotation_t)  :: annotation
   !
   type(nonlocal_t), pointer     :: next => null()

end type nonlocal_t