Christopher Rackauckas
Christopher Rackauckas
I ran it and got an error. I am not sure it's fixed?
It looks like there's a lot of other issues in this example though. `(dy, y, p, t) -> ddy(y)` doesn't make sense because then `dy=0` for the whole evolution so...
Changed the title to reflect what was found in the Discourse thread.
In theory this could infer with constant propagation. In practice this will be hard. The ODE default algorithm is inherently dependent on the values of keyword arguments, so without total...
Yeah, differential eigensystems are something that would be nice to tackle somewhere in the SciML universe. They just haven't intersected with my research yet, which is why there isn't a...
Yeah, this is because of floating point error stuff. 0.1 + 0.1 != 0.2, etc. It gets stuck at 0.3 because one of the tstops misses it by a floating...
The issue is that the PeriodicCallback holds state, so it's not thread safe. If it's done per-problem it's fine: ```julia using DifferentialEquations function f!(du,u,p,t) du .= -1.01*u end u0 =...
@SebastianM-C maybe we could fit this in?
Yeah, that would be a nice addition.
How did it hook in? There shouldn't be any extra steps to support those things, so I think it might've been done incorrectly.