fix ACTIVE/INACTIVE constants as Frank suggested

release/4.3a0
thduynguyen 2014-12-09 22:29:21 -05:00
parent 565eb99948
commit ba903536c8
1 changed files with 3 additions and 3 deletions

View File

@ -13,11 +13,11 @@
#include <vector>
#include <set>
#define ACTIVE 0.0
#define INACTIVE std::numeric_limits<double>::infinity()
namespace gtsam {
static const double ACTIVE = 0.0;
static const double INACTIVE = std::numeric_limits<double>::infinity();
/// This struct holds the state of QPSolver at each iteration
struct QPState {
VectorValues values;