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
Default choice of ODE solver recently got moved from DifferentialEquations to OrdinaryDiffEq. This should somehow also have an effect in SteadyStateDiffEq. However:
using SteadyStateDiffEq
...
ssprob =SteadyStateProblem(f, u0, p)
solve(ssprob)
gives a
ERROR: Default algorithm choices require DifferentialEquations.jl.
Please specify an algorithm (e.g., `solve(prob, Tsit5())` or
`init(prob, Tsit5())` for an ODE) or import DifferentialEquations
directly.
The text was updated successfully, but these errors were encountered:
Right, but default solver choice is currently possible for both ODEProblem and NonlienarProblem, having it for SteadyStateProblem seems like a natural next step?
Default choice of ODE solver recently got moved from DifferentialEquations to OrdinaryDiffEq. This should somehow also have an effect in SteadyStateDiffEq. However:
gives a
The text was updated successfully, but these errors were encountered: