Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Define
cts_remake
to remake ODEProblem manually
SciMLBase changed the way remake(::AbstractODEProblem,...) works in 2.68.0. Previously, if the `f` kwarg was an AbstractODEFunction, the problem was remade with f directly as its function. After 2.68.0, remake(::AbstractODEProblem) calls a new remake method with `f` and `prob.f` as arguments. This new function returns an AbstarctSciMLFunction of the same type and properties as `prob.f`. This commit replicates the behavior of DiffEqBase.remake on the provided arguments before the change.
- Loading branch information