qpmad
Eigen-based C++ QP solver.
constraint_status.h
Go to the documentation of this file.
1 /**
2  @file
3  @author Alexander Sherikov
4 
5  @copyright 2017 Alexander Sherikov. Licensed under the Apache License,
6  Version 2.0. (see LICENSE or http://www.apache.org/licenses/LICENSE-2.0)
7 
8  @brief
9 */
10 
11 #pragma once
12 
13 namespace qpmad
14 {
16  {
17  public:
18  enum Status
19  {
20  UNDEFINED = 0,
22  EQUALITY = 2,
23  INACTIVE = 3,
26  };
27  };
28 } // namespace qpmad