ITADN

CoupledSDEs not a CoreDynamicalSystem?

#228Openoameye 创建于 2024-11-22
O
oameyecommented
```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 条评论