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 __solvers_proxqp_hpp__
19 #define __solvers_proxqp_hpp__
20 
22 #include <proxsuite/proxqp/dense/dense.hpp>
23 #include <proxsuite/proxqp/sparse/sparse.hpp>
24 #include <proxsuite/proxqp/results.hpp>
25 
26 #ifdef PROFILE_PROXQP
27 #define START_PROFILER_PROXQP(x) START_PROFILER(x)
28 #define STOP_PROFILER_PROXQP(x) STOP_PROFILER(x)
29 #else
30 #define START_PROFILER_PROXQP(x)
31 #define STOP_PROFILER_PROXQP(x)
32 #endif
33 
34 using namespace proxsuite;
35 using namespace proxsuite::proxqp;
36 
37 namespace tsid {
38 namespace solvers {
42 class TSID_DLLAPI SolverProxQP : public SolverHQPBase {
43  public:
44  EIGEN_MAKE_ALIGNED_OPERATOR_NEW
45 
51 
52  SolverProxQP(const std::string& name);
53 
54  void resize(unsigned int n, unsigned int neq, unsigned int nin);
55 
57  void retrieveQPData(const HQPData& problemData,
58  const bool hessianRegularization = false);
59 
61  const QPData getQPData() const { return m_qpData; }
62 
65  const HQPOutput& solve(const HQPData& problemData);
66 
68  double getObjectiveValue();
69 
71  bool setMaximumIterations(unsigned int maxIter);
72 
73  void setMuInequality(double muIn);
74  void setMuEquality(double muEq);
75  void setRho(double rho);
76  void setEpsilonAbsolute(double epsAbs);
77  void setEpsilonRelative(double epsRel);
78  void setVerbose(bool isVerbose = false);
79 
80  protected:
81  void sendMsg(const std::string& s);
82 
83  double m_objValue;
85 
86  dense::QP<double> m_solver;
87 
88  unsigned int m_neq;
89  unsigned int m_nin;
90  unsigned int m_n;
91 
93 
94  double m_rho;
95  double m_muIn;
96  double m_muEq;
97  double m_epsAbs;
98  double m_epsRel;
100 };
101 } // namespace solvers
102 } // namespace tsid
103 
104 #endif // ifndef __solvers_proxqp_hpp__
Eigen::Ref< Vector > RefVector
Definition: math/fwd.hpp:47
const Eigen::Ref< const Matrix > ConstRefMatrix
Definition: math/fwd.hpp:51
s
Vec3f n
Eigen::Matrix< Scalar, Eigen::Dynamic, Eigen::Dynamic > Matrix
Definition: math/fwd.hpp:36
unsigned int m_n
number of inequality constraints
Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > Vector
Definition: math/fwd.hpp:35
EIGEN_MAKE_ALIGNED_OPERATOR_NEW typedef math::Matrix Matrix
QPDataTpl< double > m_qpData
number of variables
const Eigen::Ref< const Vector > ConstRefVector
Definition: math/fwd.hpp:48
Mat & solve(const ModelTpl< Scalar, Options, JointCollectionTpl > &model, const DataTpl< Scalar, Options, JointCollectionTpl > &data, const Eigen::MatrixBase< Mat > &y)
unsigned int m_nin
number of equality constraints
Abstract interface for a Quadratic Program (HQP) solver.


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