dbcsr_copy_into_existing Subroutine

public subroutine dbcsr_copy_into_existing(matrix_b, matrix_a)

Arguments

Type IntentOptional Attributes Name
type(dbcsr_type), intent(inout) :: matrix_b
type(dbcsr_type), intent(in) :: matrix_a

Source Code

   SUBROUTINE dbcsr_copy_into_existing(matrix_b, matrix_a)
      TYPE(dbcsr_type), INTENT(INOUT)                    :: matrix_b
      TYPE(dbcsr_type), INTENT(IN)                       :: matrix_a

      CALL dbcsr_copy_into_existing_prv(matrix_b%prv, matrix_a%prv)
   END SUBROUTINE dbcsr_copy_into_existing