Skip to content

Commit 382ceef

Browse files
committed
make DiffCache instead of LBC
1 parent 724cc66 commit 382ceef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/problems/ode_problems.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ end
474474
function SplitODEProblem{iip}(f::SplitFunction, u0, tspan, p = NullParameters();
475475
kwargs...) where {iip}
476476
if f._func_cache === nothing && iip
477-
_func_cache = PreallocationTools.LazyBufferCache()
477+
_func_cache = PreallocationTools.DiffCache(u0)
478478
f = remake(f; _func_cache)
479479
end
480480
ODEProblem(f, u0, tspan, p, SplitODEProblem{iip}(); kwargs...)

0 commit comments

Comments
 (0)