Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Default solver choice requires DifferentialEquations.jl (shouldn't b the case anymore) #78

Open
TorkelE opened this issue May 29, 2024 · 3 comments
Labels

Comments

@TorkelE
Copy link
Member

TorkelE commented May 29, 2024

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.
@TorkelE TorkelE added the bug label May 29, 2024
@ChrisRackauckas
Copy link
Member

Because that's not an ODEProblem.

@TorkelE
Copy link
Member Author

TorkelE commented May 29, 2024

Right, but default solver choice is currently possible for both ODEProblem and NonlienarProblem, having it for SteadyStateProblem seems like a natural next step?

@ChrisRackauckas
Copy link
Member

It would be, yes. And it should probably live in NonlinearSolve

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants