Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(dbcsr_type), | intent(inout) | :: | matrix | |||
complex(kind=real_8), | intent(in) | :: | eps | |||
integer, | intent(in), | optional | :: | method | ||
logical, | intent(in), | optional | :: | use_absolute | ||
logical, | intent(in), | optional | :: | filter_diag |
SUBROUTINE dbcsr_filter_z (matrix, eps, method, use_absolute, &
filter_diag)
TYPE(dbcsr_type), INTENT(INOUT) :: matrix
COMPLEX(kind=real_8), INTENT(IN) :: eps
INTEGER, INTENT(IN), OPTIONAL :: method
LOGICAL, INTENT(in), OPTIONAL :: use_absolute, filter_diag
CALL dbcsr_filter_anytype(matrix, dbcsr_scalar(eps), method, &
use_absolute, filter_diag)
END SUBROUTINE dbcsr_filter_z