dbcsr_heap_type Derived Type

type, public :: dbcsr_heap_type


Components

Type Visibility Attributes Name Initial
integer, public :: n
integer, public, DIMENSION(:), POINTER :: index
type(dbcsr_heap_node_e), public, DIMENSION(:), POINTER :: nodes

Source Code

   TYPE dbcsr_heap_type
      INTEGER :: n
      INTEGER, DIMENSION(:), POINTER           :: index
      TYPE(dbcsr_heap_node_e), DIMENSION(:), POINTER :: nodes
   END TYPE dbcsr_heap_type