Skip to content

Commit d53da6f

Browse files
authored
Use Zeros in almost banded adaptive QR to support BigFloat (#86)
* Use Zeros in almost banded adaptive QR to support BigFloat * Update Project.toml
1 parent 8ab7802 commit d53da6f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
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.5.11"
3+
version = "0.5.12"
44

55
[deps]
66
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
@@ -27,7 +27,7 @@ InfiniteArrays = "0.11"
2727
LazyArrays = "0.21.8"
2828
LazyBandedMatrices = "0.6"
2929
MatrixFactorizations = "0.8"
30-
SemiseparableMatrices = "0.2.3"
30+
SemiseparableMatrices = "0.2.7"
3131
julia = "1.5"
3232

3333
[extras]

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)