Hi Patrick! I've run into an issue over in dynamiqs/dynamiqs#666 when t0=t1 and I try to save intermediate values. It seems to be independent of the stepsize_controller that I use (adaptive or constant). Here is a minimal example using constant steps.
import diffrax as dx
import jax.numpy as jnp
term = dx.ODETerm(lambda t, y, _: y)
y0 = jnp.array([1.0])
ts = jnp.array([0.0, 0.0])
saveat = dx.SaveAt(subs=[dx.SubSaveAt(ts=ts), dx.SubSaveAt(t1=True)])
solution = dx.diffeqsolve(
term,
dx.Tsit5(),
ts[0],
ts[-1],
0.1,
y0,
saveat=saveat,
)
print(solution.ys[0]) # [[inf] [inf]]
print(solution.ys[1]) # [[1.]]
Hi Patrick! I've run into an issue over in dynamiqs/dynamiqs#666 when
t0=t1and I try to save intermediate values. It seems to be independent of thestepsize_controllerthat I use (adaptive or constant). Here is a minimal example using constant steps.