etienney
etienney
Hi, First, thanks to those developing this library that is useful to my work. I want to compute an ODETerm running on two different solvers simultaneously. Is it possible ?...
When using [Saveat](https://docs.kidger.site/diffrax/api/saveat/) we have the option to call a "fn" defined in the doc as > fn: A function fn(t, y, args) which specifies what to save into sol.ys...
Hi I'm using diffrax 0.5.1 with events like that : ``` def condition(state, **kwargs): "some condition" ... return cdn event = dx.DiscreteTerminatingEvent(cond_fn=condition) ``` ``` solution = dx.diffeqsolve( ... discrete_terminating_event=event )...