Skip to content

Commit afc57cc

Browse files
Fix banded matrix _cycle call
Fixes JuliaDiff/SparseDiffTools.jl#186
1 parent d58dfd1 commit afc57cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/ArrayInterfaceBandedMatrices/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ArrayInterfaceBandedMatrices"
22
uuid = "2e50d22c-5be1-4042-81b1-c572ed69783d"
3-
version = "0.1.1"
3+
version = "0.1.2"
44

55
[deps]
66
ArrayInterfaceCore = "30b0a656-2188-435a-8636-2ec0e6a096e2"

lib/ArrayInterfaceBandedMatrices/src/ArrayInterfaceBandedMatrices.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ ArrayInterfaceCore.fast_matrix_colors(::Type{<:BandedMatrices.BandedMatrix}) = t
6565
function ArrayInterfaceCore.matrix_colors(A::BandedMatrices.BandedMatrix)
6666
l, u = BandedMatrices.bandwidths(A)
6767
width = u + l + 1
68-
return _cycle(1:width, Base.size(A, 2))
68+
return ArrayInterfaceCore._cycle(1:width, Base.size(A, 2))
6969
end
7070

7171
end # module

0 commit comments

Comments
 (0)