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 
21 #include "tsid/solvers/fwd.hpp"
22 #include "tsid/math/fwd.hpp"
23 
24 #include <vector>
25 
26 namespace tsid {
27 namespace solvers {
28 
29 class HQPOutput {
30  public:
31  EIGEN_MAKE_ALIGNED_OPERATOR_NEW
32 
35 
36  HQPStatus status;
40  int iterations;
41 
42  HQPOutput() {}
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__
tsid::solvers::HQPOutput::HQPOutput
HQPOutput(unsigned int nVars, unsigned int nEqCon, unsigned int nInCon)
Definition: solver-HQP-output.hpp:44
tsid::solvers::HQPOutput::activeSet
VectorXi activeSet
Lagrange multipliers.
Definition: solver-HQP-output.hpp:39
tsid::solvers::HQPOutput::resize
void resize(unsigned int nVars, unsigned int nEqCon, unsigned int nInCon)
Definition: solver-HQP-output.hpp:48
tsid::solvers::HQPOutput::HQPOutput
HQPOutput()
number of iterations performed by the solver
Definition: solver-HQP-output.hpp:42
tsid::solvers::HQPOutput::VectorXi
math::VectorXi VectorXi
Definition: solver-HQP-output.hpp:34
tsid::solvers::HQPOutput::lambda
Vector lambda
solution
Definition: solver-HQP-output.hpp:38
tsid::math::VectorXi
Eigen::VectorXi VectorXi
Definition: math/fwd.hpp:37
tsid::solvers::HQPOutput
Definition: solver-HQP-output.hpp:29
fwd.hpp
tsid::math::Vector
Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > Vector
Definition: math/fwd.hpp:35
tsid::solvers::HQPOutput::Vector
EIGEN_MAKE_ALIGNED_OPERATOR_NEW typedef math::Vector Vector
Definition: solver-HQP-output.hpp:33
tsid
Definition: bindings/python/constraint/constraint-bound.cpp:21
tsid::solvers::HQPOutput::x
Vector x
solver status
Definition: solver-HQP-output.hpp:37
tsid::solvers::HQPOutput::iterations
int iterations
indexes of active inequalities
Definition: solver-HQP-output.hpp:40
tsid::solvers::HQPOutput::status
HQPStatus status
Definition: solver-HQP-output.hpp:36
fwd.hpp


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