Skip to content

Commit c344d14

Browse files
authored
implemented blockbandwidths for adjoint operators (#660)
1 parent 6fe969e commit c344d14

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Operators/general/OperatorLayout.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ domainspace(P::AdjointOperator)=rangespace(P.op)
9191
rangespace(P::AdjointOperator)=domainspace(P.op)
9292
domain(P::AdjointOperator)=domain(P.op)
9393
bandwidths(P::AdjointOperator) = reverse(bandwidths(P.op))
94+
blockbandwidths(P::AdjointOperator) = reverse(blockbandwidths(P.op))
9495

9596
getindex(P::AdjointOperator,k::Integer,j::Integer) = conj(P.op[j,k])
9697
getindex(P::AdjointOperator,inds...) = adjoint(P.op[reverse(inds)...])

0 commit comments

Comments
 (0)