Hello
I’m try to modernize a package that is based on the now archived StochasticDelayDiffEq.jl.
As described here the SciML packages have been reorganized. The migration path from StochasticDelayDiffEq.jl is not described.
Attempted migration
My best guess was:
StochasticDelayDiffEq.SDDEProblem → SciMLBase.SDDEProblem
StochasticDelayDiffEq.EM → StochasticDiffEq.EM
StochasticDelayDiffEq.solve → SciMLBase.solve
The latest SciML documention mentions the use of StochasticDiffEq.jl here, although this package is also marked as archived on Github.
Error
In any case, this is not working:
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.
This error message is wrong as I provide a solver: solve(prob, EM(); dt=0.1, saveat=1.0)
Thanks for your help!
Andreas