Skip to content

Commit c42fd7e

Browse files
fix wrong branch
1 parent 0660226 commit c42fd7e

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

src/ArrayInterface.jl

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -499,14 +499,7 @@ function lu_instance(A::Matrix{T}) where {T}
499499
return LU{luT}(similar(A, 0, 0), ipiv, info)
500500
end
501501
function lu_instance(jac_prototype::SparseMatrixCSC)
502-
SuiteSparse.UMFPACK.UmfpackLU(Ptr{Cvoid}(),
503-
Ptr{Cvoid}(),
504-
1,
505-
1,
506-
jac_prototype.colptr[1:1],
507-
jac_prototype.rowval[1:1],
508-
jac_prototype.nzval[1:1],
509-
0)
502+
SuiteSparse.UMFPACK.UmfpackLU(similar(jac_prototype, 1, 1))
510503
end
511504

512505
function lu_instance(A::Symmetric{T}) where {T}

0 commit comments

Comments
 (0)