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) override;
55 
57  void retrieveQPData(const HQPData& problemData,
58  const bool hessianRegularization = false) override;
59 
61  const QPData getQPData() const { return m_qpData; }
62 
65  const HQPOutput& solve(const HQPData& problemData) override;
66 
68  double getObjectiveValue() override;
69 
71  bool setMaximumIterations(unsigned int maxIter) override;
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__
tsid::solvers::SolverProxQP::m_muEq
double m_muEq
Definition: solvers/solver-proxqp.hpp:96
tsid::solvers::SolverProxQP::m_solver
dense::QP< double > m_solver
Definition: solvers/solver-proxqp.hpp:86
tsid::solvers::SolverProxQP::m_objValue
double m_objValue
Definition: solvers/solver-proxqp.hpp:83
tsid::solvers::SolverProxQP::m_n
unsigned int m_n
number of inequality constraints
Definition: solvers/solver-proxqp.hpp:90
test_Solvers.neq
int neq
Definition: test_Solvers.py:13
tsid::solvers::SolverProxQP::m_rho
double m_rho
Definition: solvers/solver-proxqp.hpp:94
tsid::solvers::SolverProxQP::m_nin
unsigned int m_nin
number of equality constraints
Definition: solvers/solver-proxqp.hpp:89
tsid::solvers::QPDataTpl< double >
solve
Mat & solve(const ModelTpl< Scalar, Options, JointCollectionTpl > &model, const DataTpl< Scalar, Options, JointCollectionTpl > &data, const Eigen::MatrixBase< Mat > &y)
tsid::solvers::SolverProxQP::getQPData
const QPData getQPData() const
Definition: solvers/solver-proxqp.hpp:61
tsid::solvers::SolverProxQP::m_hessian_regularization
double m_hessian_regularization
Definition: solvers/solver-proxqp.hpp:84
tsid::math::RefVector
Eigen::Ref< Vector > RefVector
Definition: math/fwd.hpp:47
tsid::solvers::HQPOutput
Definition: solver-HQP-output.hpp:29
tsid::solvers::SolverHQPBase
Abstract interface for a Quadratic Program (HQP) solver.
Definition: solver-HQP-base.hpp:34
test_Solvers.nin
int nin
Definition: test_Solvers.py:14
tsid::solvers::SolverProxQP::Matrix
EIGEN_MAKE_ALIGNED_OPERATOR_NEW typedef math::Matrix Matrix
Definition: solvers/solver-proxqp.hpp:46
tsid::solvers::SolverProxQP::m_epsRel
double m_epsRel
Definition: solvers/solver-proxqp.hpp:98
tsid::math::Matrix
Eigen::Matrix< Scalar, Eigen::Dynamic, Eigen::Dynamic > Matrix
Definition: math/fwd.hpp:36
setup.name
name
Definition: setup.in.py:179
solver-HQP-base.hpp
tsid::solvers::SolverProxQP::ConstRefVector
math::ConstRefVector ConstRefVector
Definition: solvers/solver-proxqp.hpp:49
tsid::math::Vector
Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > Vector
Definition: math/fwd.hpp:35
tsid::solvers::SolverProxQP
Definition: solvers/solver-proxqp.hpp:42
tsid::solvers::SolverProxQP::ConstRefMatrix
math::ConstRefMatrix ConstRefMatrix
Definition: solvers/solver-proxqp.hpp:50
tsid::solvers::SolverProxQP::m_neq
unsigned int m_neq
Definition: solvers/solver-proxqp.hpp:88
tsid::solvers::SolverProxQP::m_qpData
QPDataTpl< double > m_qpData
number of variables
Definition: solvers/solver-proxqp.hpp:92
tsid
Definition: bindings/python/constraint/constraint-bound.cpp:21
test_Formulation.s
s
Definition: test_Formulation.py:115
tsid::solvers::SolverProxQP::RefVector
math::RefVector RefVector
Definition: solvers/solver-proxqp.hpp:48
tsid::solvers::SolverProxQP::m_isVerbose
bool m_isVerbose
Definition: solvers/solver-proxqp.hpp:99
tsid::math::ConstRefMatrix
const typedef Eigen::Ref< const Matrix > ConstRefMatrix
Definition: math/fwd.hpp:51
tsid::solvers::SolverProxQP::m_muIn
double m_muIn
Definition: solvers/solver-proxqp.hpp:95
tsid::solvers::SolverProxQP::Vector
math::Vector Vector
Definition: solvers/solver-proxqp.hpp:47
tsid::solvers::HQPData
pinocchio::container::aligned_vector< ConstraintLevel > HQPData
Definition: solvers/fwd.hpp:99
tsid::solvers::SolverProxQP::m_epsAbs
double m_epsAbs
Definition: solvers/solver-proxqp.hpp:97
tsid::python::ConstRefVector
math::ConstRefVector ConstRefVector
Definition: bindings/python/tasks/task-joint-posVelAcc-bounds.hpp:31
n
Vec3f n


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