Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 535 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 535 Bytes

SQP Solver

This project implements a Sequential Quadratic Programming (SQP) Solver in C++. The implementation follows Algorithm 18.3 from Numerical Optimization by J. Nocedal and S. J. Wright. The solver class is templated to statically allocate necessary objects beforehand and allows for compile-time checks. For solving the quadratic sub-problems the Operator Splitting QP Solver (OSQP) was re-implemented in C++ using Eigen.

Dependencies