Skip to content

Commit 457611c

Browse files
Merge pull request #2483 from jClugstor/cache_strip_fix
Set `args` to nothing in cache stripping
2 parents 90ba736 + bf51ea1 commit 457611c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/OrdinaryDiffEqCore/src/interp_func.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ function strip_cache(cache)
9090
if hasfield(typeof(cache), :uf)
9191
SciMLBase.@reset cache.uf = nothing
9292
end
93+
if hasfield(typeof(cache),:args)
94+
SciMLBase.@reset cache.args = nothing
95+
end
9396

9497
cache
9598
end

0 commit comments

Comments
 (0)