Returns whether this work matrix uses the mutable type
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(dbcsr_work_type), | intent(in) | :: | wm |
work matrix |
use the mutable and not append-only working structures
PURE FUNCTION dbcsr_wm_use_mutable(wm) RESULT(use_mutable) !! Returns whether this work matrix uses the mutable type TYPE(dbcsr_work_type), INTENT(IN) :: wm !! work matrix LOGICAL :: use_mutable !! use the mutable and not append-only working structures ! --------------------------------------------------------------------------- use_mutable = dbcsr_mutable_instantiated(wm%mutable) END FUNCTION dbcsr_wm_use_mutable