Skip to content

Commit

Permalink
make it use correct/intended code path
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarrasch committed Jan 13, 2025
1 parent 93ec9f5 commit c776ef6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/cholmod.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ using SparseArrays.CHOLMOD: getcommon
using Random
using Serialization
using LinearAlgebra:
I, cholesky, cholesky!, det, diag, eigmax, ishermitian, isposdef, issuccess, factorize,
I, cholesky, cholesky!, det, diag, eigmax, ishermitian, isposdef, issuccess,
issymmetric, ldiv!, ldlt, ldlt!, logdet, norm, opnorm, Diagonal, Hermitian, Symmetric,
PosDefException, ZeroPivotException, RowMaximum
using SparseArrays
Expand Down Expand Up @@ -1028,7 +1028,7 @@ end
Bt = Matrix(B')
Bts = sparse(B')

F = cholesky(A')
F = cholesky(A)'
@test F \ B F \ Bt'
@test F \ B F \ Bts'
@test issparse(F \ Bts')
Expand Down

0 comments on commit c776ef6

Please sign in to comment.