Skip to content

Commit

Permalink
Restrict SciMLBase compat to <2.68.0
Browse files Browse the repository at this point in the history
SciMLBase.remake is called twice during the cache initialization
for a problem with the multirate alg.

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.
  • Loading branch information
imreddyTeja committed Dec 19, 2024
1 parent 0c57a2f commit a8055fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ OrderedCollections = "1"
PrettyTables = "2"
Random = "1"
SafeTestsets = "0.1"
SciMLBase = "1, 2"
SciMLBase = "< 2.68.0"
StaticArrays = "1"
StatsBase = "0.33, 0.34"
Test = "1"
Expand Down

0 comments on commit a8055fa

Please sign in to comment.