Skip to content

Commit e791e14

Browse files
committed
purge dead code
1 parent ebf5177 commit e791e14

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

src/MultiPrecisionArrays.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ MPGFact = Union{MPGEFact,MPGHFact}
3636
MPLFacts = Union{MPLFact}
3737
MPKFact = Union{MPGFact,MPBFact}
3838
MPHHFact = Union{MPGHFact,MPHFact}
39-
is_heavy(x::MPHHFact) = true
39+
#is_heavy(x::MPHHFact) = true
4040
#
4141
# Termination criteria defaults
4242
#

src/Solvers/termination_settings.jl

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -41,23 +41,23 @@ function termination_settings(TW, term_parms, residterm)
4141
return tolf
4242
end
4343

44-
function init_IR(AF, b, normtype=Inf)
45-
x = AF.sol
46-
AD = AF.AH
47-
TR = eltype(AF.residual)
48-
TW = eltype(x)
49-
TF = eltype(AF.AL);
50-
x .*= TW(0.0)
51-
# remember that eps(TR) = 2 * unit roundoff
52-
residterm = AF.residterm
53-
tolf = termination_settings(TW, term_parms, residterm)
54-
Rmax = term_parms.Rmax
55-
litmax = term_parms.litmax
44+
#function Xinit_IR(AF, b, normtype=Inf)
45+
# x = AF.sol
46+
# AD = AF.AH
47+
# TR = eltype(AF.residual)
48+
# TW = eltype(x)
49+
# TF = eltype(AF.AL);
50+
# x .*= TW(0.0)
51+
# # remember that eps(TR) = 2 * unit roundoff
52+
# residterm = AF.residterm
53+
# tolf = termination_settings(TW, term_parms, residterm)
54+
# Rmax = term_parms.Rmax
55+
# litmax = term_parms.litmax
5656
#
5757
# I compute the norm of AF if needed in single
5858
# Half is still to slow.
5959
#
60-
anrm = AF.anrm
61-
end
60+
# anrm = AF.anrm
61+
#end
6262

6363

0 commit comments

Comments
 (0)