Skip to content

Commit 1526c63

Browse files
committed
Use Zeros in almost banded adaptive QR to support BigFloat
1 parent 8ab7802 commit 1526c63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/infqr.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ end
1414
function AdaptiveQRData(::AbstractAlmostBandedLayout, A::AbstractMatrix{T}) where T
1515
l,u = almostbandwidths(A)
1616
r = almostbandedrank(A)
17-
data = AlmostBandedMatrix{T}(undef,(2l+u+1,0),(l,l+u),r) # pad super
17+
data = AlmostBandedMatrix(Zeros{T}(2l+u+1,0),(l,l+u),r) # pad super
1818

1919
AdaptiveQRData(CachedArray(data,A,(0,0)), Vector{T}(), 0)
2020
end

0 commit comments

Comments
 (0)