-
-
Notifications
You must be signed in to change notification settings - Fork 70
Does StochasticDiffEq
need the full OrdinaryDiffEq
dependency?
#596
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
Comments
any update for this issue ? Cause |
No movement on it yet, and I don't htink I can get to it this month. But maybe the first change is that, you probably could make it just depend on OrdinaryDiffEqCore, OrdinaryDiffEqNonlinearSolve and that might be a minimal amount. We should split StochasticDiffEq into sublibs like OrdinaryDiffEq in order to fully minimize it, but that would be a bit more work. |
Thank you for the information. I'm already using For the import SciMLBase: solve, SDEProblem
import StochasticDiffEq: StochasticDiffEqAlgorithm, SRA1
function sde_function(...; alg::StochasticDiffEqAlgorithm = SRA1(), ...)
...
prob = SDEProblem(...)
sol = solve(prob, alg, ...)
...
end I noticed that, for the Would it be possible to not |
We could just move the default handling for the SDE solver choice from DifferentialEquations.jl to here. |
Now that
OrdinaryDiffEq
has been split up, doesStochasticDiffEq
need the fullOrdinaryDiffEq
library?The text was updated successfully, but these errors were encountered: