KrisLibrary  1.0.0
QuadProgPPInterface.h
1 #ifndef QUADPROGPP_INTERFACE_H
2 #define QUADPROGPP_INTERFACE_H
3 
4 #include "QuadraticProgram.h"
5 
6 namespace Optimization {
7 
15 {
16  LinearProgram::Result Solve(const QuadraticProgram& qp,Vector& xopt);
17 };
18 
19 } //namespace Optimization
20 
21 #endif
Namespace for classes and functions in the Optimization package.
Definition: CSet.h:7
An interface to the QuadProg++ quadratic programming solver. Enable with the HAVE_QUADPROGPP=1 prepro...
Definition: QuadProgPPInterface.h:14
Quadratic program definition.
Definition: QuadraticProgram.h:18