Skip to content

Commit a3b87f1

Browse files
authored
Remove BlockSizes (#68)
1 parent 1c1a55c commit a3b87f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "BlockBandedMatrices"
22
uuid = "ffab5731-97b5-5995-9138-79e8c1846df0"
3-
version = "0.8"
3+
version = "0.8.1"
44

55
[deps]
66
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"

src/interfaceimpl.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function sizes_from_blocks(A::Diagonal, _)
3232
# size(A.dl[k],1) == sz[1][k+1] || throw(ArgumentError("block sizes of lower diagonal inconsisent with diagonal"))
3333
# size(A.dl[k],2) == sz[2][k] || throw(ArgumentError("block sizes of lower diagonal inconsisent with diagonal"))
3434
# end
35-
BlockSizes(size.(A.diag, 1), size.(A.diag,2))
35+
(size.(A.diag, 1), size.(A.diag,2))
3636
end
3737

3838

0 commit comments

Comments
 (0)