Skip to content

Commit e515182

Browse files
fix jacobian wrapper location
1 parent 33a8a67 commit e515182

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/caches/sdirk_caches.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ function alg_cache(alg::ImplicitEulerHeun,prob,u,ΔW,ΔZ,rate_prototype,noise_ra
120120
fsalfirst = zeros(rate_prototype)
121121
k = zeros(rate_prototype)
122122

123-
uf = UJacobianWrapper(f,t)
123+
uf = DiffEqDiffTools.UJacobianWrapper(f,t)
124124
jac_config = build_jac_config(alg,f,uf,du1,uprev,u,tmp,dz)
125125
ηold = one(uEltypeNoUnits)
126126

@@ -205,7 +205,7 @@ function alg_cache(alg::ImplicitRKMil,prob,u,ΔW,ΔZ,rate_prototype,noise_rate_p
205205
fsalfirst = zeros(rate_prototype)
206206
k = zeros(rate_prototype)
207207

208-
uf = UJacobianWrapper(f,t)
208+
uf = DiffEqDiffTools.UJacobianWrapper(f,t)
209209
jac_config = build_jac_config(alg,f,uf,du1,uprev,u,tmp,dz)
210210
ηold = one(uEltypeNoUnits)
211211

0 commit comments

Comments
 (0)