You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When orbit-integrating now (Julia v1.9)(using orbit.jl/integrate()), one gets the following warning
@Warning: Backwards compatability support of the new return codes to Symbols will be deprecated with the Julia v1.9 release. Please see https://docs.sciml.ai/SciMLBase/stable/interfaces/Solutions/#retcodes for more information
If one reads the content provided with the link, I interpret it as we need to change e.g. sol.retcode == :Success to SciMLBase.successful_retcode(sol) everywhere in orbits.jl (and callbacks.jl?). That is, remove Symbol syntax
When orbit-integrating now (Julia v1.9)(using orbit.jl/integrate()), one gets the following warning
@Warning: Backwards compatability support of the new return codes to Symbols will be deprecated with the Julia v1.9 release. Please see https://docs.sciml.ai/SciMLBase/stable/interfaces/Solutions/#retcodes for more information
If one reads the content provided with the link, I interpret it as we need to change e.g.
sol.retcode == :Success
toSciMLBase.successful_retcode(sol)
everywhere in orbits.jl (and callbacks.jl?). That is, remove Symbol syntax@lstagner can you fix this?
The text was updated successfully, but these errors were encountered: