Sebastian Micluța-Câmpeanu

Results 53 comments of Sebastian Micluța-Câmpeanu

I was thinking that this package could be a dependency of DrWatson, but I wasn't sure if there are any needs from DrWatson, so that's why I asked. I think...

Regarding the above discussion about the inclusion of this functionality in Base / Pkg, I don't think that can happen for the following reasons: Inclusion of something like this is...

It depends on what features you would like in the end, but @ChrisRackauckas mentioned that it would be nice for the package to give you a sentence that you can...

@davibarreira I was thinking of parsing the READMEs of the packages to look for a Zenodo tag and then use HTTP.jl to access the Zenodo API and construct the Bibliography.jl...

There are still some cases to handle. As for tests, the recipes don't have any tests, I was thinking to ad some with `@test_nowarn`.

@ChrisRackauckas It looks like the core issue is finding out whether a `DiffEqArray` has the ODE solution shape that needs a transpose or if it comes out of indexing an...

```julia function ensemble_subset(sim, states) u = map(sim) do sol DiffEqArray([[sol[s][i] for s in states] for i in eachindex(sol.t)], sol.t) end EnsembleSolution(u, sim.elapsedTime, sim.converged) end ``` makes the `Vector{Num}` case plottable,...

`AutoZygote` should work now, we added testing for that in #45