dbcsr_heap_type Derived Type

type, public :: dbcsr_heap_type


Components

Type Visibility Attributes Name Initial
integer, public :: n = -1
integer, public, DIMENSION(:), POINTER :: index => NULL()
type(dbcsr_heap_node_e), public, DIMENSION(:), POINTER :: nodes => NULL()

Source Code

   TYPE dbcsr_heap_type
      INTEGER :: n = -1
      INTEGER, DIMENSION(:), POINTER           :: index => NULL()
      TYPE(dbcsr_heap_node_e), DIMENSION(:), POINTER :: nodes => NULL()
   END TYPE dbcsr_heap_type