dbcsr_2d_array_type Derived Type

type, public :: dbcsr_2d_array_type

A 2-d 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_2d_array_type
      !! A 2-d array of DBCSR matrices

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