Skip to content

Commit 06390b7

Browse files
authored
Fix tests for concatenating PertConstRows, etc. (#227)
1 parent 8dfbaf6 commit 06390b7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-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 = "InfiniteArrays"
22
uuid = "4858937d-0d70-526a-a4dd-2d5cb5dd786c"
3-
version = "0.15.9"
3+
version = "0.15.10"
44

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

src/inftoeplitz.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,6 @@ MemoryLayout(::Type{<:SymTriPertToeplitz}) = PertTridiagonalToeplitzLayout()
120120
sublayout(::ApplyBandedLayout, ::Type{<:Tuple{KR,Integer}}) where {KR<:InfAxes} =
121121
sublayout(PaddedColumns{UnknownLayout}(), Tuple{KR})
122122
sublayout(::ApplyBandedLayout, ::Type{<:Tuple{Integer,JR}}) where {JR<:InfAxes} =
123-
sublayout(PaddedColumns{UnknownLayout}(), Tuple{JR})
123+
sublayout(PaddedColumns{UnknownLayout}(), Tuple{JR})
124+
125+
LazyArrays._vcat_sub_arguments(::Union{PertConstRows,ConstRows}, A, V) = LazyArrays._vcat_sub_arguments(ApplyLayout{typeof(hcat)}(), A, V)

0 commit comments

Comments
 (0)