HQPData.cpp
Go to the documentation of this file.
1 //
2 // Copyright (c) 2018 CNRS
3 //
4 // This file is part of tsid
5 // tsid is free software: you can redistribute it
6 // and/or modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation, either version
8 // 3 of the License, or (at your option) any later version.
9 // tsid is distributed in the hope that it will be
10 // useful, but WITHOUT ANY WARRANTY; without even the implied warranty
11 // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // General Lesser Public License for more details. You should have
13 // received a copy of the GNU Lesser General Public License along with
14 // tsid If not, see
15 // <http://www.gnu.org/licenses/>.
16 //
17 
20 
21 namespace tsid {
22 namespace python {
25 }
26 void exposeHQPData() {
30 
32 
33  // expose QP data structures
34  bp::class_<QPDataBase>("QPDataBase")
35  .def_readonly("H", &QPDataBase::H, "Cost matrix")
36  .def_readonly("g", &QPDataBase::g)
37  .def_readonly("CE", &QPDataBase::CE, "Equality constraint matrix")
38  .def_readonly("ce0", &QPDataBase::ce0);
39 
40  bp::class_<QPData, bp::bases<QPDataBase>>("QPData")
41  .def_readonly("CI", &QPData::CI, "Inequality constraint matrix")
42  .def_readonly("lb", &QPData::ci_lb, "Inequality constraint lower bound")
43  .def_readonly("ub", &QPData::ci_ub, "Inequality constraint upper bound");
44 
45  bp::class_<QPDataQuadProg, bp::bases<QPDataBase>>("QPDataQuadProg")
46  .def_readonly("CI", &QPDataQuadProg::CI,
47  "Inequality constraint matrix (unilateral)")
48  .def_readonly(
49  "ci0", &QPDataQuadProg::ci0,
50  "Inequality constraint vector (stacked lower and upper bounds)");
51 }
52 } // namespace python
53 } // namespace tsid
QPDataTpl< double > QPData
QPDataQuadProgTpl< double > QPDataQuadProg
QPDataBaseTpl< double > QPDataBase
static void expose(const std::string &class_name)
Definition: HQPData.hpp:61
float g
Definition: ex_4_conf.py:47
void exposeConstraintLevel()
Definition: HQPData.cpp:23
void exposeHQPData()
Definition: HQPData.cpp:26
static void expose(const std::string &class_name)
Definition: HQPData.hpp:42


tsid
Author(s): Andrea Del Prete, Justin Carpentier
autogenerated on Sun Jul 2 2023 02:21:51