dbcsr_1d_array_type Derived Type

type, public :: dbcsr_1d_array_type

An array of DBCSR matrices


Components

Type Visibility Attributes Name Initial
type(dbcsr_type), public, DIMENSION(:), POINTER :: mats => Null()

the matrices

type(dbcsr_imagedistribution_obj), public :: image_dist

image distribution


Source Code

   TYPE dbcsr_1d_array_type
      !! An array of DBCSR matrices

      TYPE(dbcsr_type), DIMENSION(:), POINTER :: mats => Null()
         !! the matrices
      TYPE(dbcsr_imagedistribution_obj)      :: image_dist
         !! image distribution
   END TYPE dbcsr_1d_array_type