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;
37  Vector x;
38  Vector lambda;
39  VectorXi activeSet;
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__
Vector x
solver status
void resize(unsigned int nVars, unsigned int nEqCon, unsigned int nInCon)
Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > Vector
Definition: math/fwd.hpp:35
HQPOutput(unsigned int nVars, unsigned int nEqCon, unsigned int nInCon)
EIGEN_MAKE_ALIGNED_OPERATOR_NEW typedef math::Vector Vector
HQPOutput()
number of iterations performed by the solver
VectorXi activeSet
Lagrange multipliers.
int iterations
indexes of active inequalities
Eigen::VectorXi VectorXi
Definition: math/fwd.hpp:37


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