Solves Dynamic Feasibility and Dynamic Optimisation problems (think Optimal Control) using an Integrated Residuals method.
julia> ]
pkg> add Interesso
using Interesso
dop = DOProblem();
solution = solve(dop, LeastSquares());
using Interesso
dop = DOProblem();
I = DOIterator(dop, LeastSquares());
collect(I);