JuliaIntervals / TaylorModels.jl

Rigorous function approximation using Taylor models in Julia
Other
63 stars 14 forks source link

New struct to contain the solution of an ODE? #116

Closed lbenet closed 3 years ago

lbenet commented 3 years ago

This would make life much easier for plotting through a recipe. Something like this already exists in ReachabilityAnalysis.jl, but I think this would be a better place to have it.

cc @mforets

mforets commented 3 years ago

Some general feedback about this subject. In fact this is not particular to adding a new struct TMSol to this library and a new plot recipe for it. That's great :tada: . Perhaps we should add a few examples in the TaylorModels docs as well. (ping @lucaferranti)

I'm sharing my view on how to put the pieces together for potential new users of these tools. In the upcoming JuliaCon we'll give a workshop together with @schillic, so it's a good exercise to start thinking about the big picture and how to present it....

lbenet commented 3 years ago

Thanks @mforets for sharing your view and actually the big picture you have in which everything can be matched and combined together.

Regarding this proposal, at least for the time being, I think it is ok to have it implemented here, having in mind that this can be eventually moved elsewhere.

Clearly, we should avoid as much as possible code duplicity, in particular for maintenance. But until ReachabilityBase.jl is not there it is expected there will be some code duplication. Also, there is the issue of the dependencies of the packages, which should be certainly sorted out first. Once said this, thanks for sharing the links to the locations for the relevant code which is already implemented in ReachabilityAnalysis!