tsid 1.9.0
Efficient Task Space Inverse Dynamics for Multi-body Systems based on Pinocchio
Loading...
Searching...
No Matches
solver-HQP-output.hpp
Go to the documentation of this file.
1//
2// Copyright (c) 2017 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 __invdyn_solvers_hqp_output_hpp__
19#define __invdyn_solvers_hqp_output_hpp__
20
22#include "tsid/math/fwd.hpp"
23
24#include <vector>
25
26namespace tsid {
27namespace solvers {
28
29class HQPOutput {
30 public:
31 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
32
35
36 HQPStatus status;
41
43
44 HQPOutput(unsigned int nVars, unsigned int nEqCon, unsigned int nInCon) {
45 resize(nVars, nEqCon, nInCon);
46 }
47
48 void resize(unsigned int nVars, unsigned int nEqCon, unsigned int nInCon) {
49 x.resize(nVars);
50 lambda.resize(nEqCon + nInCon);
51 activeSet.resize(nInCon);
52 }
53};
54} // namespace solvers
55} // namespace tsid
56
57#endif // ifndef __invdyn_solvers_hqp_output_hpp__
HQPOutput()
number of iterations performed by the solver
Definition solver-HQP-output.hpp:42
HQPStatus status
Definition solver-HQP-output.hpp:36
math::VectorXi VectorXi
Definition solver-HQP-output.hpp:34
VectorXi activeSet
Lagrange multipliers.
Definition solver-HQP-output.hpp:39
HQPOutput(unsigned int nVars, unsigned int nEqCon, unsigned int nInCon)
Definition solver-HQP-output.hpp:44
Vector lambda
solution
Definition solver-HQP-output.hpp:38
void resize(unsigned int nVars, unsigned int nEqCon, unsigned int nInCon)
Definition solver-HQP-output.hpp:48
Vector x
solver status
Definition solver-HQP-output.hpp:37
int iterations
indexes of active inequalities
Definition solver-HQP-output.hpp:40
EIGEN_MAKE_ALIGNED_OPERATOR_NEW typedef math::Vector Vector
Definition solver-HQP-output.hpp:33
Eigen::VectorXi VectorXi
Definition fwd.hpp:24
Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > Vector
Definition fwd.hpp:22
Definition fwd.hpp:31
Definition constraint-bound.hpp:25