Skip to content

Commit

Permalink
fix wrong branch
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Nov 22, 2023
1 parent 0660226 commit c42fd7e
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/ArrayInterface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -499,14 +499,7 @@ function lu_instance(A::Matrix{T}) where {T}
return LU{luT}(similar(A, 0, 0), ipiv, info)
end
function lu_instance(jac_prototype::SparseMatrixCSC)
SuiteSparse.UMFPACK.UmfpackLU(Ptr{Cvoid}(),
Ptr{Cvoid}(),
1,
1,
jac_prototype.colptr[1:1],
jac_prototype.rowval[1:1],
jac_prototype.nzval[1:1],
0)
SuiteSparse.UMFPACK.UmfpackLU(similar(jac_prototype, 1, 1))
end

function lu_instance(A::Symmetric{T}) where {T}
Expand Down

0 comments on commit c42fd7e

Please sign in to comment.