Skip to content

Commit

Permalink
Other corrections
Browse files Browse the repository at this point in the history
 - replace undefined function
  • Loading branch information
sbdntsbs authored and amontoison committed Sep 5, 2023
1 parent e1fe5bd commit e8a7733
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/convenience.jl
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ function mumps_select_inv! end
function mumps_select_inv!(x::AbstractSparseArray, mumps::Mumps)
set_icntl!(mumps, 30, 1)
set_icntl!(mumps, 20, 3)
provide_rhs!(mumps, x)
associate_rhs!(mumps, x)
if mumps.job [2, 4] # if already factored, just solve
mumps.job = 3
elseif mumps.job [1] # if analyzed only, factorize and solve
Expand Down Expand Up @@ -323,7 +323,7 @@ function LinearAlgebra.ldiv!(mumps::Mumps, y)
else
mumps.job = 2
end
provide_rhs!(mumps, y)
associate_rhs!(mumps, y)
mumps_solve!(y, mumps)
end

Expand Down

0 comments on commit e8a7733

Please sign in to comment.