dbcsr_get_block_p_c Subroutine

private subroutine dbcsr_get_block_p_c(matrix, row, col, block, tr, found, row_size, col_size)

Arguments

Type IntentOptional Attributes Name
type(dbcsr_type), intent(in) :: matrix
integer, intent(in) :: row
integer, intent(in) :: col
complex(kind=real_4), DIMENSION(:), POINTER :: block
logical, intent(out) :: tr
logical, intent(out) :: found
integer, intent(out), optional :: row_size
integer, intent(out), optional :: col_size

Source Code

      SUBROUTINE dbcsr_get_block_p_c (matrix, row, col, block, tr, found, row_size, col_size)
         TYPE(dbcsr_type), INTENT(IN)              :: matrix
         INTEGER, INTENT(IN)                       :: row, col
         COMPLEX(kind=real_4), DIMENSION(:), POINTER            :: block
         LOGICAL, INTENT(OUT)                      :: tr
         LOGICAL, INTENT(OUT)                      :: found
         INTEGER, INTENT(OUT), OPTIONAL            :: row_size, col_size

         CALL dbcsr_get_block_p_prv(matrix%prv, row, col, block, tr, found, row_size, col_size)
      END SUBROUTINE dbcsr_get_block_p_c