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 ext/ArrayInterfaceBandedMatricesExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
end
end

function BandedMatrixIndex(rowsize, colsize, lowerbandwidth, upperbandwidth, isrow)
function ArrayInterface.BandedMatrixIndex(rowsize, colsize, lowerbandwidth, upperbandwidth, isrow)

Check warning on line 49 in ext/ArrayInterfaceBandedMatricesExt.jl

View check run for this annotation

Codecov / codecov/patch

ext/ArrayInterfaceBandedMatricesExt.jl#L49

Added line #L49 was not covered by tests
upperbandwidth > -lowerbandwidth || throw(ErrorException("Invalid Bandwidths"))
bandinds = upperbandwidth:-1:(-lowerbandwidth)
bandsizes = [_bandsize(band, rowsize, colsize) for band in bandinds]
Expand Down
Loading