Daniel Weiss
Daniel Weiss
This is something user benoit mentioned already on the website under "AutoMPO Syntax: Concatenate local terms" but miles commented that it would be best to file a feature request. I'm...
### Bug Description There are instances where calling the `qpt` function for the process matrix chi corresponding to a superoperator returned by `propagator` is not Hermitean. This occurs strangely when...
I am simply re-running the code discussed in https://github.com/SciML/SciMLSensitivity.jl/issues/938 and implemented as a test here https://github.com/SciML/SciMLSensitivity.jl/blob/d1ded754fe3b0d505d91c8ab5ea728a90be56df1/test/local_sensitivity/complex_adjoints.jl ```julia using SciMLSensitivity, OrdinaryDiffEq, Zygote, LinearAlgebra, FiniteDiff, Test A = [1.0*im 2.0; 3.0 4.0]...
Hello, I have been really enjoying this package! I have what is probably a quick question. In addition to Objectives that ensure that the initial states reach the target states,...
Addresses edge case raised in https://github.com/patrick-kidger/diffrax/issues/488 when t0 == t1 and `saveat.ts` is not `None`. Additionally if `saveat.t0` is `True` then those values were not updated either, which should be...
I'm wondering if you'd be interested in a PR that would allow for solves that are terminated via events to be restarted (after some user-supplied update function is called) until...
Hi Patrick! I've run into an issue over in https://github.com/dynamiqs/dynamiqs/issues/666 when `t0=t1` and I try to save intermediate values. It seems to be independent of the `stepsize_controller` that I use...
Eliminates code introduced in https://github.com/patrick-kidger/diffrax/pull/494 whereby `ys` was updated inside of the loop to `y0` in the case of `t0==t1`. Now `ys` is instead initialized appropriately with `y0`. This is...