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;
55 inline ConstraintLevel&
get() {
return m_std_const; }
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());
116 inline HQPData&
get() {
return m_std_hqp; }
117 inline bool set(
const HQPData&
data) {
128 #endif // ifndef __tsid_python_util_container_hpp__ void append_bound(double num, std::shared_ptr< math::ConstraintBound > i)
void append_eq(double num, std::shared_ptr< math::ConstraintEquality > i)
aligned_pair< T1, T2 > make_pair(const T1 &t1, const T2 &t2)
solvers::ConstraintLevel ConstraintLevel
ConstraintLevel m_std_const
void append_helper(ConstraintLevels *cons)
void append_ineq(double num, std::shared_ptr< math::ConstraintInequality > i)