We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34743d2 commit 80a5e82Copy full SHA for 80a5e82
lib/OrdinaryDiffEqDifferentiation/src/linsolve_utils.jl
@@ -14,7 +14,7 @@ function dolinsolve(integrator, linsolve; A = nothing, linu = nothing, b = nothi
14
reinit!(linsolve; A)
15
else
16
(;u, p, t) = integrator
17
- du = hasproperty(integrator) ? integrator.du : nothing
+ du = hasproperty(integrator, :du) ? integrator.du : nothing
18
p = (du, u, p, t)
19
reinit!(linsolve; A, p)
20
end
0 commit comments