We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent deb2fee commit 6b4c214Copy full SHA for 6b4c214
Project.toml
@@ -110,6 +110,7 @@ Reexport = "1"
110
SafeTestsets = "0.1"
111
SciMLBase = "2.70"
112
SciMLOperators = "0.3.7, 0.4, 1"
113
+SciMLVerbosity = "1.0"
114
Setfield = "1"
115
SparseArrays = "1.10"
116
Sparspak = "0.3.6"
src/simplegmres.jl
@@ -161,7 +161,7 @@ function init_cacheval(alg::SimpleGMRES{UDB}, args...; kwargs...) where {UDB}
161
end
162
163
function _init_cacheval(::Val{false}, alg::SimpleGMRES, A, b, u, Pl, Pr, maxiters::Int,
164
- abstol, reltol, ::Bool, ::OperatorAssumptions; zeroinit = true, kwargs...)
+ abstol, reltol, ::LinearVerbosity, ::OperatorAssumptions; zeroinit = true, kwargs...)
165
@unpack memory, restart, blocksize, warm_start = alg
166
167
if zeroinit
@@ -391,7 +391,7 @@ function SciMLBase.solve!(cache::SimpleGMRESCache{false}, lincache::LinearCache)
391
392
393
function _init_cacheval(::Val{true}, alg::SimpleGMRES, A, b, u, Pl, Pr, maxiters::Int,
394
- abstol, reltol, ::Bool, ::OperatorAssumptions; zeroinit = true,
+ abstol, reltol, ::LinearVerbosity, ::OperatorAssumptions; zeroinit = true,
395
blocksize = alg.blocksize)
396
@unpack memory, restart, warm_start = alg
397
0 commit comments