Skip to content

Commit d247a61

Browse files
authored
Use <:AbstractLazyLayout instead of <:LazyLayout in QL signatures (#199)
* Use <:AbstractLazyLayout * Bump version from 0.10.1 to 0.10.2
1 parent f20670b commit d247a61

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "InfiniteLinearAlgebra"
22
uuid = "cde9dba0-b1de-11e9-2c62-0bab9446c55c"
3-
version = "0.10.1"
3+
version = "0.10.2"
44

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

src/infql.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,9 +495,9 @@ getindex(Q::QLPackedQ{<:Any,<:AdaptiveQLFactors}, I::Int, J::UnitRange{Int}) =
495495
getindex(Q::QLPackedQ{<:Any,<:AdaptiveQLFactors}, I::UnitRange{Int}, J::Int) =
496496
[Q[i,j] for i in I, j in J]
497497

498-
materialize!(M::Lmul{<:QLPackedQLayout{<:LazyLayout},<:AbstractPaddedLayout}) = ApplyArray(*,M.A,M.B)
498+
materialize!(M::Lmul{<:QLPackedQLayout{<:AbstractLazyLayout},<:AbstractPaddedLayout}) = ApplyArray(*,M.A,M.B)
499499

500-
function materialize!(M::Lmul{<:AdjQLPackedQLayout{<:LazyLayout},<:AbstractPaddedLayout})
500+
function materialize!(M::Lmul{<:AdjQLPackedQLayout{<:AbstractLazyLayout},<:AbstractPaddedLayout})
501501
adjA,B = M.A,M.B
502502
A = parent(adjA)
503503
mA, nA = size(A.factors)

0 commit comments

Comments
 (0)