CoupledSDEs not a CoreDynamicalSystem?
```julia
f!(du, u, p, t) = du .= 1.01u # deterministic part
sde = CoupledSDEs(f!, zeros(2));
ode = CoupledODEs(sde)
jacobian(sde) # fails
jacobian(ode) # works
ode isa CoreDynamicalSystem # true
sde isa CoreDynamicalSystem # false
ode isa ContinuousTimeDynamicalSystem # true
sde isa ContinuousTimeDynamicalSystem # true
```
How come that CoupledSDEs is not CoreDynamicalSystem?
1 条评论