Skip to content

Commit

Permalink
Pruning dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
ctkelley committed Nov 19, 2023
1 parent bd8bfe7 commit 8b17c9b
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/Structs4MP/MPGArray.jl
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,3 @@ KStore=kstore(n,"gmres")
MPGA=MPGArray(AH, AL, VStore, KStore, res, true)
return MPGA
end

function Xmpglu!(MPGA::MPGArray)
AL=MPGA.AL
AH=MPGA.AH
VStore=MPGA.VStore
KStore=MPGA.KStore
res=MPGA.residual
TL=eltype(AL)
(TL == Float16) ? ALF = hlu!(AL) : ALF = lu!(AL)
MPF=MPGEFact(AH, AL, ALF, VStore, KStore, res, true)
return MPF
end

0 comments on commit 8b17c9b

Please sign in to comment.