30 unsigned int priority = 0;
31 for (HQPData::const_iterator it = data.begin(); it != data.end(); it++) {
32 ss <<
"Level " << priority << endl;
33 for (ConstraintLevel::const_iterator iit = it->begin(); iit != it->end();
36 ss <<
" - " <<
c->name() <<
": w=" << iit->first <<
", ";
39 else if (
c->isInequality())
43 ss <<
c->rows() <<
"x" <<
c->cols() << endl;
50 for (HQPData::const_iterator it = data.begin(); it != data.end(); it++) {
51 for (ConstraintLevel::const_iterator iit = it->begin(); iit != it->end();
54 ss <<
"*** " <<
c->name() <<
" *** ";
55 if (
c->isEquality()) {
56 ss <<
"(equality)" << endl;
57 ss <<
"A =\n" <<
c->matrix() << endl;
58 ss <<
"b = " <<
c->vector().transpose() << endl;
59 }
else if (
c->isInequality()) {
60 ss <<
"(inequality)" << endl;
61 ss <<
"A =\n" <<
c->matrix() << endl;
62 ss <<
"lb = " <<
c->lowerBound().transpose() << endl;
63 ss <<
"ub = " <<
c->upperBound().transpose() << endl;
65 ss <<
"(bounds)" << endl;
66 ss <<
"lb = " <<
c->lowerBound().transpose() << endl;
67 ss <<
"ub = " <<
c->upperBound().transpose() << endl;
std::string HQPDataToString(const HQPData &data, bool printMatrices=false)