Returns whether work matrices should use the mutable data type
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(dbcsr_type), | intent(in) | :: | matrix |
matrix |
use the mutable and not append-only working structures
PURE FUNCTION dbcsr_use_mutable(matrix) RESULT(use_mutable)
!! Returns whether work matrices should use the mutable data type
TYPE(dbcsr_type), INTENT(IN) :: matrix
!! matrix
LOGICAL :: use_mutable
!! use the mutable and not append-only working structures
! ---------------------------------------------------------------------------
use_mutable = matrix%work_mutable
END FUNCTION dbcsr_use_mutable