Skip to content

Commit c3be34c

Browse files
authored
Fix reverse cholesky (#67)
* Fix reversecholesky * v0.4.2
1 parent caa7c42 commit c3be34c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PiecewiseOrthogonalPolynomials"
22
uuid = "4461d12d-4663-4550-8580-cb764c85e20f"
33
authors = ["Sheehan Olver <solver@mac.com>"]
4-
version = "0.4.1"
4+
version = "0.4.2"
55

66
[deps]
77
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
@@ -31,7 +31,7 @@ InfiniteArrays = "0.13"
3131
InfiniteLinearAlgebra = "0.7"
3232
LazyArrays = "1.8.2"
3333
LazyBandedMatrices = "0.9.1"
34-
MatrixFactorizations = "2.0"
34+
MatrixFactorizations = "2.2"
3535
QuasiArrays = "0.11"
3636
julia = "1.9"
3737

src/arrowhead.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,8 +269,7 @@ end
269269

270270

271271

272-
function MatrixFactorizations._reverse_chol!(A::BBBArrowheadMatrix, ::Type{UpperTriangular})
273-
272+
function MatrixFactorizations.reversecholesky_layout!(::ArrowheadLayouts, A::AbstractMatrix, ::Type{UpperTriangular})
274273
Threads.@threads for B in A.D
275274
reversecholesky!(Symmetric(B))
276275
end

0 commit comments

Comments
 (0)