Skip to content

Commit

Permalink
Merge pull request #68 from BenChung/add-arguments
Browse files Browse the repository at this point in the history
Support the expanded change_t_via_interpolation! interface
  • Loading branch information
ChrisRackauckas authored Nov 8, 2024
2 parents 29eb206 + 8178c1d commit ca46a37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/integrator_utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function DiffEqBase.savevalues!(integrator::ODEInterfaceIntegrator,
return saved, savedexactly
end

function DiffEqBase.change_t_via_interpolation!(integrator::ODEInterfaceIntegrator, t)
function DiffEqBase.change_t_via_interpolation!(integrator::ODEInterfaceIntegrator, t, modify_save_endpoint::Type{Val{T}}=Val{false}, reinitialize_alg=nothing) where T
integrator.t = t
tmp = integrator(integrator.t)::Vector{Float64}
if eltype(integrator.sol.u) <: Vector
Expand Down

0 comments on commit ca46a37

Please sign in to comment.