Skip to content

JuDO-dev/Interesso.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages