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 = -1
integer, public :: id_nr = -1
integer, public :: print_level = -1
integer, public :: n_rlevel = -1
integer, public, DIMENSION(:), POINTER :: iteration => NULL()
logical, public, DIMENSION(:), POINTER :: last_iter => NULL()
character(len=default_string_length), public :: project_name = ""
character(len=default_string_length), public, DIMENSION(:), POINTER :: level_name => NULL()

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 = -1, id_nr = -1
      INTEGER                              :: print_level = -1, n_rlevel = -1
      INTEGER, DIMENSION(:), POINTER       :: iteration => NULL()
      LOGICAL, DIMENSION(:), POINTER       :: last_iter => NULL()
      CHARACTER(len=default_string_length) :: project_name = ""
      CHARACTER(LEN=default_string_length), &
         DIMENSION(:), POINTER           :: level_name => NULL()
   END TYPE dbcsr_iteration_info_type