constraint-base.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_math_constraint_base_hpp__
19 #define __invdyn_math_constraint_base_hpp__
20 
21 #include "tsid/math/fwd.hpp"
22 #include <string>
23 #include <pinocchio/macros.hpp>
24 
25 namespace tsid {
26 namespace math {
27 
36  public:
37  EIGEN_MAKE_ALIGNED_OPERATOR_NEW
38 
39  ConstraintBase(const std::string& name);
40 
41  ConstraintBase(const std::string& name, const unsigned int rows,
42  const unsigned int cols);
43 
44  ConstraintBase(const std::string& name, ConstRefMatrix A);
45  virtual ~ConstraintBase() {}
46 
47  virtual const std::string& name() const;
48  virtual unsigned int rows() const = 0;
49  virtual unsigned int cols() const = 0;
50  virtual void resize(const unsigned int r, const unsigned int c) = 0;
51 
52  virtual bool isEquality() const = 0;
53  virtual bool isInequality() const = 0;
54  virtual bool isBound() const = 0;
55 
56  virtual const Matrix& matrix() const;
57  virtual const Vector& vector() const = 0;
58  virtual const Vector& lowerBound() const = 0;
59  virtual const Vector& upperBound() const = 0;
60 
61  virtual Matrix& matrix();
62  virtual Vector& vector() = 0;
63  virtual Vector& lowerBound() = 0;
64  virtual Vector& upperBound() = 0;
65 
66  virtual bool setMatrix(ConstRefMatrix A);
67  virtual bool setVector(ConstRefVector b) = 0;
68  virtual bool setLowerBound(ConstRefVector lb) = 0;
69  virtual bool setUpperBound(ConstRefVector ub) = 0;
70 
71  virtual bool checkConstraint(ConstRefVector x, double tol = 1e-6) const = 0;
72 
73  protected:
74  std::string m_name;
76 };
77 
78 } // namespace math
79 } // namespace tsid
80 
81 #endif // ifndef __invdyn_math_constraint_base_hpp__
const Eigen::Ref< const Matrix > ConstRefMatrix
Definition: math/fwd.hpp:51
virtual const Vector & lowerBound() const =0
virtual unsigned int rows() const =0
Eigen::Matrix< Scalar, Eigen::Dynamic, Eigen::Dynamic > Matrix
Definition: math/fwd.hpp:36
virtual unsigned int cols() const =0
Vec3f b
Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > Vector
Definition: math/fwd.hpp:35
virtual bool setLowerBound(ConstRefVector lb)=0
FCL_REAL r
virtual const Vector & vector() const =0
EIGEN_MAKE_ALIGNED_OPERATOR_NEW ConstraintBase(const std::string &name)
Vec3f c
virtual bool setMatrix(ConstRefMatrix A)
virtual bool checkConstraint(ConstRefVector x, double tol=1e-6) const =0
virtual bool isEquality() const =0
virtual bool setVector(ConstRefVector b)=0
virtual bool isInequality() const =0
const Eigen::Ref< const Vector > ConstRefVector
Definition: math/fwd.hpp:48
virtual const Vector & upperBound() const =0
virtual bool isBound() const =0
virtual const std::string & name() const
virtual const Matrix & matrix() const
virtual void resize(const unsigned int r, const unsigned int c)=0
Abstract class representing a linear equality/inequality constraint. Equality constraints are represe...
virtual bool setUpperBound(ConstRefVector ub)=0


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