Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ The cache automatically tracks when matrix `A` or parameters `p` change by setti
appropriate freshness flags. When `solve!` is called, stale cache entries are automatically
recomputed as needed.
"""
mutable struct LinearCache{TA, Tb, Tu, Tp, Talg, Tc, Tl, Tr, Ttol, issq, S}
mutable struct LinearCache{TA, Tb, Tu, Tp, Talg, Tc, Tl, Tr, Ttol, issq, S, V <: LinearVerbosity}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[JuliaFormatter] reported by reviewdog 🐶

Suggested change
mutable struct LinearCache{TA, Tb, Tu, Tp, Talg, Tc, Tl, Tr, Ttol, issq, S, V <: LinearVerbosity}
mutable struct LinearCache{
TA, Tb, Tu, Tp, Talg, Tc, Tl, Tr, Ttol, issq, S, V <: LinearVerbosity}

A::TA
b::Tb
u::Tu
Expand All @@ -119,7 +119,7 @@ mutable struct LinearCache{TA, Tb, Tu, Tp, Talg, Tc, Tl, Tr, Ttol, issq, S}
abstol::Ttol
reltol::Ttol
maxiters::Int
verbose::LinearVerbosity
verbose::V
assumptions::OperatorAssumptions{issq}
sensealg::S
end
Expand Down
Loading