Skip to content

Commit

Permalink
a few fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Aug 18, 2024
1 parent 7119fa9 commit 9acf18b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ end
diff1::Array{uType, 1}
diff2::Array{uType, 1}
end
get_fsalfirstlast(cache::ExtrapolationMutableCache,u) = (zero(u), zero(u))
get_fsalfirstlast(cache::ImplicitEulerExtrapolationCache,u) = (zero(u), zero(u))

@cache mutable struct ImplicitEulerExtrapolationConstantCache{QType, dtType, arrayType, TF,
UF, sequenceType} <:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1081,7 +1081,7 @@ function perform_step!(integrator, cache::PSRK4p7q6ConstantCache, repeat_step =
integrator.u = u
end

get_fsalfirstlast(cache::RKMCache,u) = (cache.k1, cache.k6)
get_fsalfirstlast(cache::PSRK4p7q6Cache,u) = (cache.k1, cache.k6)
function initialize!(integrator, cache::PSRK4p7q6Cache)
@unpack uprev, f, p, t = integrator

Expand Down

0 comments on commit 9acf18b

Please sign in to comment.