Skip to content

Commit 7451167

Browse files
committed
fix HYPRE verbosity
1 parent 7266578 commit 7451167

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ext/LinearSolveHYPREExt.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,13 +144,12 @@ function SciMLBase.init(prob::LinearProblem, alg::HYPREAlgorithm,
144144
Tc = typeof(cacheval)
145145
isfresh = true
146146
precsisfresh = false
147-
148147
cache = LinearCache{
149148
typeof(A), typeof(b), typeof(u0), typeof(p), typeof(alg), Tc,
150-
typeof(Pl), typeof(Pr), typeof(reltol),
149+
typeof(Pl), typeof(Pr), typeof(reltol), typeof(verb_spec),
151150
typeof(__issquare(assumptions)), typeof(sensealg)
152151
}(A, b, u0, p, alg, cacheval, isfresh, precsisfresh, Pl, Pr, abstol, reltol,
153-
maxiters, verbose, assumptions, sensealg)
152+
maxiters, verb_spec, assumptions, sensealg)
154153
return cache
155154
end
156155

0 commit comments

Comments
 (0)