Skip to content

Commit 62ee8e7

Browse files
committed
Fix abstract linear verbosity type
1 parent 13de42c commit 62ee8e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/common.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ The cache automatically tracks when matrix `A` or parameters `p` change by setti
105105
appropriate freshness flags. When `solve!` is called, stale cache entries are automatically
106106
recomputed as needed.
107107
"""
108-
mutable struct LinearCache{TA, Tb, Tu, Tp, Talg, Tc, Tl, Tr, Ttol, issq, S}
108+
mutable struct LinearCache{TA, Tb, Tu, Tp, Talg, Tc, Tl, Tr, Ttol, Tlv, issq, S}
109109
A::TA
110110
b::Tb
111111
u::Tu
@@ -119,7 +119,7 @@ mutable struct LinearCache{TA, Tb, Tu, Tp, Talg, Tc, Tl, Tr, Ttol, issq, S}
119119
abstol::Ttol
120120
reltol::Ttol
121121
maxiters::Int
122-
verbose::LinearVerbosity
122+
verbose::Tlv
123123
assumptions::OperatorAssumptions{issq}
124124
sensealg::S
125125
end

0 commit comments

Comments
 (0)