Skip to content

Commit 1428327

Browse files
committed
InfniteArrays v0.11
1 parent fe85ed4 commit 1428327

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
@@ -21,7 +21,7 @@ ArrayLayouts = "0.7"
2121
BandedMatrices = "0.16"
2222
BlockArrays = "0.15.1"
2323
FillArrays = "0.11"
24-
InfiniteArrays = "0.10"
24+
InfiniteArrays = "0.10, 0.11"
2525
Infinities = "0.1"
2626
IntervalSets = "0.5"
2727
LazyArrays = "0.21"

src/bases/bases.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ function _factorize(::MappedBasisLayout, L)
204204
MappedFactorization(factorize(view(P,:,jr)), invmap(parentindices(L)[1]))
205205
end
206206

207-
transform_ldiv(A, B, _) = factorize(A) \ B
207+
transform_ldiv(A::AbstractQuasiArray{T}, B::AbstractQuasiArray{V}, _) where {T,V} = factorize(convert(AbstractQuasiArray{promote_type(T,V)}, A)) \ B
208208
transform_ldiv(A, B) = transform_ldiv(A, B, size(A))
209209

210210
copy(L::Ldiv{<:AbstractBasisLayout}) = transform_ldiv(L.A, L.B)

0 commit comments

Comments
 (0)