I am trying to get the trajectory for which the spectrum is calculated.
I tried it with the following:
_diffeq = (alg = Tsit5(), abstol = 1e-7, reltol = 1e-7, saveat = (1.0:0.1:10.0) )
ds = ContinuousDynamicalSystem(rhs!, u0, p; diffeq)
λ1 = @time Lyapunov spectrum(ds, 1000, p.k; Δt=1.0, Ttr= 1000.0, show_progress = true);_
Then when looking in ds.integ.sol the solution is not retained. How do I keep it?