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 665350c commit 3563eadCopy full SHA for 3563ead
src/common.jl
@@ -86,14 +86,14 @@ end
86
function Base.setproperty!(cache::LinearCache, name::Symbol, x)
87
if name === :A
88
if hasproperty(cache.alg, :precs)
89
- Pl, Pr = cache.alg.precs(A, cache.p)
+ Pl, Pr = cache.alg.precs(x, cache.p)
90
setfield!(cache, :Pl, Pl)
91
setfield!(cache, :Pr, Pr)
92
end
93
setfield!(cache, :isfresh, true)
94
elseif name === :p
95
96
- Pl, Pr = cache.alg.precs(cache.A, p)
+ Pl, Pr = cache.alg.precs(cache.A, x)
97
98
99
0 commit comments