dbcsr_iteration_info_type Derived Type

type, public :: dbcsr_iteration_info_type

contains the information about the current state of the program to be able to decide if output is necessary


Components

Type Visibility Attributes Name Initial
integer, public :: ref_count
integer, public :: id_nr
integer, public :: print_level
integer, public :: n_rlevel
integer, public, DIMENSION(:), POINTER :: iteration
logical, public, DIMENSION(:), POINTER :: last_iter
character(len=default_string_length), public :: project_name
character(len=default_string_length), public, DIMENSION(:), POINTER :: level_name

Source Code

   TYPE dbcsr_iteration_info_type
      !! contains the information about the current state of the program
      !! to be able to decide if output is necessary

      INTEGER                              :: ref_count, id_nr
      INTEGER                              :: print_level, n_rlevel
      INTEGER, DIMENSION(:), POINTER       :: iteration
      LOGICAL, DIMENSION(:), POINTER       :: last_iter
      CHARACTER(len=default_string_length) :: project_name
      CHARACTER(LEN=default_string_length), &
         DIMENSION(:), POINTER           :: level_name
   END TYPE dbcsr_iteration_info_type