Main Page
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
c
d
e
g
h
i
m
n
p
r
s
t
u
v
w
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
~
Functions
_
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
x
~
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
p
q
r
s
t
v
w
x
Typedefs
c
d
f
h
m
r
s
t
v
Enumerations
Enumerator
Files
File List
File Members
All
b
c
d
e
g
h
l
m
n
p
q
r
s
t
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
b
c
d
e
p
r
s
t
include
tsid
bindings
python
solvers
HQPOutput.hpp
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
18
#ifndef __tsid_python_HQPOutput_hpp__
19
#define __tsid_python_HQPOutput_hpp__
20
21
#include "
tsid/bindings/python/fwd.hpp
"
22
23
#include "
tsid/solvers/solver-HQP-output.hpp
"
24
25
namespace
tsid
{
26
namespace
python
{
27
namespace
bp
=
boost::python
;
28
29
template
<
typename
T>
30
struct
HQPOutputPythonVisitor
31
:
public
boost::python::def_visitor<HQPOutputPythonVisitor<T> > {
32
template
<
class
PyClass>
33
34
void
visit
(PyClass& cl)
const
{
35
cl
.def(bp::init<>(
"Default Constructor"
))
36
.def(bp::init<int, int, int>((bp::args(
"nVars"
,
"nEq"
,
"nInCon"
))))
37
.add_property(
"x"
, &
HQPOutputPythonVisitor::x
)
38
.add_property(
"status"
, &
HQPOutputPythonVisitor::status
);
39
}
40
static
Eigen::VectorXd
x
(
const
T&
self
) {
return
self
.x; }
41
static
int
status
(
const
T&
self
) {
return
self
.status; }
42
static
void
expose
(
const
std::string& class_name) {
43
std::string doc =
"HQPOutput info."
;
44
bp::class_<T>(
class_name
.c_str(), doc.c_str(), bp::no_init)
45
.def(
HQPOutputPythonVisitor<T>
());
46
}
47
};
48
}
// namespace python
49
}
// namespace tsid
50
51
#endif // ifndef __tsid_python_HQPOutput_hpp__
tsid::python::HQPOutputPythonVisitor
Definition:
HQPOutput.hpp:30
boost::python
class_name
str class_name(str s)
tsid::python::HQPOutputPythonVisitor::expose
static void expose(const std::string &class_name)
Definition:
HQPOutput.hpp:42
solver-HQP-output.hpp
tsid::python::HQPOutputPythonVisitor::status
static int status(const T &self)
Definition:
HQPOutput.hpp:41
python
tsid::python::HQPOutputPythonVisitor::x
static Eigen::VectorXd x(const T &self)
Definition:
HQPOutput.hpp:40
tsid
Definition:
bindings/python/constraint/constraint-bound.cpp:21
cl
cl
fwd.hpp
tsid::python::HQPOutputPythonVisitor::visit
void visit(PyClass &cl) const
Definition:
HQPOutput.hpp:34
tsid
Author(s): Andrea Del Prete, Justin Carpentier
autogenerated on Thu Apr 3 2025 02:47:15