Skip to content

Commit c776ef6

Browse files
committed
make it use correct/intended code path
1 parent 93ec9f5 commit c776ef6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/cholmod.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ using SparseArrays.CHOLMOD: getcommon
1212
using Random
1313
using Serialization
1414
using LinearAlgebra:
15-
I, cholesky, cholesky!, det, diag, eigmax, ishermitian, isposdef, issuccess, factorize,
15+
I, cholesky, cholesky!, det, diag, eigmax, ishermitian, isposdef, issuccess,
1616
issymmetric, ldiv!, ldlt, ldlt!, logdet, norm, opnorm, Diagonal, Hermitian, Symmetric,
1717
PosDefException, ZeroPivotException, RowMaximum
1818
using SparseArrays
@@ -1028,7 +1028,7 @@ end
10281028
Bt = Matrix(B')
10291029
Bts = sparse(B')
10301030

1031-
F = cholesky(A')
1031+
F = cholesky(A)'
10321032
@test F \ B F \ Bt'
10331033
@test F \ B F \ Bts'
10341034
@test issparse(F \ Bts')

0 commit comments

Comments
 (0)