bindings/python/solvers/solver-proxqp.hpp
Go to the documentation of this file.
1 //
2 // Copyright (c) 2022 INRIA
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 
18 #ifndef __tsid_python_solver_proxqp_hpp__
19 #define __tsid_python_solver_proxqp_hpp__
20 
22 
24 
26 #include "tsid/solvers/fwd.hpp"
28 
29 namespace tsid {
30 namespace python {
31 namespace bp = boost::python;
32 
33 template <typename Solver>
35  : public boost::python::def_visitor<SolverProxQPPythonVisitor<Solver> > {
36  template <class PyClass>
37 
38  void visit(PyClass &cl) const {
39  cl.def(bp::init<const std::string &>((bp::arg("name")),
40  "Default Constructor with name"))
41  .def("resize", &SolverProxQPPythonVisitor::resize,
42  bp::args("n", "neq", "nin"))
43  .add_property("ObjVal", &Solver::getObjectiveValue, "return obj value")
44  .def("solve", &SolverProxQPPythonVisitor::solve, bp::args("HQPData"))
46  bp::args("HQPData for Python"))
47  .add_property("qpData", &Solver::getQPData, "return QP Data object")
48  .def("retrieveQPData", &SolverProxQPPythonVisitor::retrieveQPData,
49  bp::args("HQPData for Python"))
50  .def("set_maximum_iterations", &Solver::setMaximumIterations)
51  .def("set_mu_inequality", &Solver::setMuInequality)
52  .def("set_mu_equality", &Solver::setMuEquality)
53  .def("set_rho", &Solver::setRho)
54  .def("set_epsilon_absolute", &Solver::setEpsilonAbsolute)
55  .def("set_epsilon_relative", &Solver::setEpsilonRelative)
56  .def("set_verbose", &Solver::setVerbose);
57  }
58 
59  static void resize(Solver &self, unsigned int n, unsigned int neq,
60  unsigned int nin) {
61  return self.resize(n, neq, nin);
62  }
64  const solvers::HQPData &problemData) {
65  solvers::HQPOutput output;
66  output = self.solve(problemData);
67  return output;
68  }
70  solvers::HQPOutput output;
72 
73  output = self.solve(data);
74 
75  return output;
76  }
77 
80  self.retrieveQPData(data);
81  return self.getQPData();
82  }
83 
84  static void expose(const std::string &class_name) {
85  std::string doc = "Solver proxqp info.";
86  bp::class_<Solver>(class_name.c_str(), doc.c_str(), bp::no_init)
88  }
89 };
90 } // namespace python
91 } // namespace tsid
92 
93 #endif // ifndef __tsid_python_solver_proxqp_hpp__
tsid::python::SolverProxQPPythonVisitor::expose
static void expose(const std::string &class_name)
Definition: bindings/python/solvers/solver-proxqp.hpp:84
tsid::python::SolverProxQPPythonVisitor::resize
static void resize(Solver &self, unsigned int n, unsigned int neq, unsigned int nin)
Definition: bindings/python/solvers/solver-proxqp.hpp:59
boost::python
class_name
str class_name(str s)
tsid::python::SolverProxQPPythonVisitor::solve
static solvers::HQPOutput solve(Solver &self, const solvers::HQPData &problemData)
Definition: bindings/python/solvers/solver-proxqp.hpp:63
test_Solvers.neq
int neq
Definition: test_Solvers.py:13
tsid::python::SolverProxQPPythonVisitor::retrieveQPData
static solvers::QPData retrieveQPData(Solver &self, HQPDatas &HQPDatas)
Definition: bindings/python/solvers/solver-proxqp.hpp:78
setup.data
data
Definition: setup.in.py:48
solver-HQP-output.hpp
tsid::solvers::QPDataTpl< double >
tsid::python::SolverProxQPPythonVisitor::visit
void visit(PyClass &cl) const
Definition: bindings/python/solvers/solver-proxqp.hpp:38
tsid::solvers::HQPOutput
Definition: solver-HQP-output.hpp:29
python
Solver
ADMMContactSolverTpl< context::Scalar > Solver
test_Solvers.nin
int nin
Definition: test_Solvers.py:14
tsid::python::SolverProxQPPythonVisitor
Definition: bindings/python/solvers/solver-proxqp.hpp:34
tsid::python::SolverProxQPPythonVisitor::solver_helper
static solvers::HQPOutput solver_helper(Solver &self, HQPDatas &HQPDatas)
Definition: bindings/python/solvers/solver-proxqp.hpp:69
tsid::python::HQPDatas
Definition: container.hpp:80
tsid::python::HQPDatas::get
HQPData & get()
Definition: container.hpp:116
tsid
Definition: bindings/python/constraint/constraint-bound.cpp:21
cl
cl
container.hpp
fwd.hpp
tsid::solvers::HQPData
pinocchio::container::aligned_vector< ConstraintLevel > HQPData
Definition: solvers/fwd.hpp:99
n
Vec3f n
solver-proxqp.hpp
fwd.hpp


tsid
Author(s): Andrea Del Prete, Justin Carpentier
autogenerated on Thu Apr 3 2025 02:47:16