Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(dbcsr_type), | intent(inout) | :: | matrix | |||
real(kind=dp), | intent(in) | :: | eps | |||
integer, | intent(in), | optional | :: | method | ||
logical, | intent(in), | optional | :: | use_absolute | ||
logical, | intent(in), | optional | :: | filter_diag |
SUBROUTINE dbcsr_filter(matrix, eps, method, use_absolute, filter_diag) TYPE(dbcsr_type), INTENT(INOUT) :: matrix REAL(dp), INTENT(IN) :: eps INTEGER, INTENT(IN), OPTIONAL :: method LOGICAL, INTENT(in), OPTIONAL :: use_absolute, filter_diag CALL dbcsr_filter_anytype(matrix%prv, dbcsr_conform_scalar_prv(eps, matrix%prv), & method, use_absolute, filter_diag) END SUBROUTINE dbcsr_filter