Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/BandedBlockBandedMatrix.jl
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@
# default is to use whole block
_subblockbandwidths(A::AbstractMatrix, ::NTuple{2,OneTo{Int}}) = bandwidths(A)
function _subblockbandwidths(A::AbstractMatrix, _)
M,N = map(maximum, blocklengths.(axes(A)))
M,N = map(x -> maximum(x, init=0), blocklengths.(axes(A)))

Check warning on line 291 in src/BandedBlockBandedMatrix.jl

View check run for this annotation

Codecov / codecov/patch

src/BandedBlockBandedMatrix.jl#L291

Added line #L291 was not covered by tests
M-1,N-1
end

Expand Down
Loading