18 #ifndef __tsid_python_util_container_hpp__
19 #define __tsid_python_util_container_hpp__
41 for (ConstraintLevel::const_iterator iit = m_std_const.begin();
42 iit != m_std_const.end(); iit++) {
44 ss <<
" - " <<
c->name() <<
": w=" << iit->first <<
", ";
47 else if (
c->isInequality())
51 ss <<
c->rows() <<
"x" <<
c->cols() << endl;
53 cout << ss.str() << endl;
58 std::shared_ptr<math::ConstraintEquality> i) {
59 m_std_const.push_back(
64 std::shared_ptr<math::ConstraintInequality> i) {
65 m_std_const.push_back(
70 std::shared_ptr<math::ConstraintBound> i) {
71 m_std_const.push_back(
85 inline void resize(
size_t i) { m_std_hqp.resize(
i); }
89 unsigned int priority = 0;
90 for (HQPData::const_iterator
it = m_std_hqp.begin();
it != m_std_hqp.end();
92 ss <<
"Level " << priority << endl;
93 for (ConstraintLevel::const_iterator iit =
it->begin(); iit !=
it->end();
96 ss <<
" - " <<
c->name() <<
": w=" << iit->first <<
", ";
99 else if (
c->isInequality())
100 ss <<
"inequality, ";
103 ss <<
c->rows() <<
"x" <<
c->cols() << endl;
107 cout << ss.str() << endl;
113 m_std_hqp.push_back(cons->
get());
128 #endif // ifndef __tsid_python_util_container_hpp__