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 3686f0a commit fd1dc5aCopy full SHA for fd1dc5a
src/cache_utils.jl
@@ -1,6 +1,6 @@
1
is_constant_cache(::OrdinaryDiffEqConstantCache) = true
2
is_constant_cache(::OrdinaryDiffEqCache) = false
3
-is_constant_cache(::CompositeCache) = is_constant_cache(cache.caches[1])
+is_constant_cache(cache::CompositeCache) = is_constant_cache(cache.caches[1])
4
is_constant_cache(::DefaultCache{Cache1}) where {Cache1} = Cache1 <: OrdinaryDiffEqConstantCache
5
6
function DiffEqBase.unwrap_cache(integrator::ODEIntegrator, is_stiff)
0 commit comments