src/math/constraint-inequality.cpp
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 
19 
20 using namespace tsid::math;
21 
23  : ConstraintBase(name) {}
24 
26  const unsigned int rows,
27  const unsigned int cols)
28  : ConstraintBase(name, rows, cols),
29  m_lb(Vector::Zero(rows)),
30  m_ub(Vector::Zero(rows)) {}
31 
35  : ConstraintBase(name, A), m_lb(lb), m_ub(ub) {
36  PINOCCHIO_CHECK_INPUT_ARGUMENT(A.rows() == lb.rows(),
37  "The number of rows of A and lb do not match");
38  PINOCCHIO_CHECK_INPUT_ARGUMENT(A.rows() == ub.rows(),
39  "The number of rows of A and ub do not match");
40 }
41 
42 unsigned int ConstraintInequality::rows() const {
43  assert(m_A.rows() == m_lb.rows());
44  assert(m_A.rows() == m_ub.rows());
45  return (unsigned int)m_A.rows();
46 }
47 
48 unsigned int ConstraintInequality::cols() const {
49  return (unsigned int)m_A.cols();
50 }
51 
52 void ConstraintInequality::resize(const unsigned int r, const unsigned int c) {
53  m_A.setZero(r, c);
54  m_lb.setZero(r);
55  m_ub.setZero(r);
56 }
57 
58 bool ConstraintInequality::isEquality() const { return false; }
59 bool ConstraintInequality::isInequality() const { return true; }
60 bool ConstraintInequality::isBound() const { return false; }
61 
63  assert(false);
64  return m_lb;
65 }
66 const Vector& ConstraintInequality::lowerBound() const { return m_lb; }
67 const Vector& ConstraintInequality::upperBound() const { return m_ub; }
68 
70  assert(false);
71  return m_lb;
72 }
75 
77  assert(false);
78  return false;
79 }
81  m_lb = lb;
82  return true;
83 }
85  m_ub = ub;
86  return true;
87 }
88 
90  return ((m_A * x).array() <= m_ub.array() + tol).all() &&
91  ((m_A * x).array() >= m_lb.array() - tol).all();
92 }
const Eigen::Ref< const Matrix > ConstRefMatrix
Definition: math/fwd.hpp:51
Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > Vector
Definition: math/fwd.hpp:35
FCL_REAL r
Vec3f c
void resize(const unsigned int r, const unsigned int c)
const Eigen::Ref< const Vector > ConstRefVector
Definition: math/fwd.hpp:48
bool checkConstraint(ConstRefVector x, double tol=1e-6) const
virtual const std::string & name() const
EIGEN_MAKE_ALIGNED_OPERATOR_NEW ConstraintInequality(const std::string &name)
Abstract class representing a linear equality/inequality constraint. Equality constraints are represe...
#define PINOCCHIO_CHECK_INPUT_ARGUMENT(...)


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