qpmad
Eigen-based C++ QP solver.
include
qpmad
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
{
15
class
ConstraintStatus
16
{
17
public
:
18
enum
Status
19
{
20
UNDEFINED
= 0,
21
INCONSISTENT
= 1,
22
EQUALITY
= 2,
23
INACTIVE
= 3,
24
ACTIVE_LOWER_BOUND
= 4,
25
ACTIVE_UPPER_BOUND
= 5
26
};
27
};
28
}
// namespace qpmad
qpmad::ConstraintStatus
Definition:
constraint_status.h:16
qpmad::ConstraintStatus::Status
Status
Definition:
constraint_status.h:19
qpmad::ConstraintStatus::INACTIVE
@ INACTIVE
Definition:
constraint_status.h:23
qpmad::ConstraintStatus::ACTIVE_LOWER_BOUND
@ ACTIVE_LOWER_BOUND
Definition:
constraint_status.h:24
qpmad::ConstraintStatus::INCONSISTENT
@ INCONSISTENT
Definition:
constraint_status.h:21
qpmad::ConstraintStatus::UNDEFINED
@ UNDEFINED
Definition:
constraint_status.h:20
qpmad::ConstraintStatus::EQUALITY
@ EQUALITY
Definition:
constraint_status.h:22
qpmad::ConstraintStatus::ACTIVE_UPPER_BOUND
@ ACTIVE_UPPER_BOUND
Definition:
constraint_status.h:25
qpmad
Definition:
active_set.h:15
Generated by
1.9.1