Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 1.05 KB

README.md

File metadata and controls

43 lines (33 loc) · 1.05 KB

Integrated Residuals Solver

Stable Dev Build Status Coverage

Solves Dynamic Feasibility and Dynamic Optimisation problems (think Optimal Control) using an Integrated Residuals method.

Installation

julia> ]
  pkg> add Interesso

Example using solve()

using Interesso

dop = DOProblem();

solution = solve(dop, LeastSquares());

Example using iterator()

using Interesso

dop = DOProblem();

I = DOIterator(dop, LeastSquares());

collect(I);