src/math/constraint-bound.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 size)
27  : ConstraintBase(name, Matrix::Identity(size, size)),
28  m_lb(Vector::Zero(size)),
29  m_ub(Vector::Zero(size)) {}
30 
33  : ConstraintBase(name, Matrix::Identity(lb.size(), lb.size())),
34  m_lb(lb),
35  m_ub(ub) {
37  lb.size() == ub.size(),
38  "The size of the lower and upper bound vectors needs to be match!");
39 }
40 
41 unsigned int ConstraintBound::rows() const {
42  assert(m_lb.rows() == m_ub.rows());
43  return (unsigned int)m_lb.rows();
44 }
45 
46 unsigned int ConstraintBound::cols() const {
47  assert(m_lb.rows() == m_ub.rows());
48  return (unsigned int)m_lb.rows();
49 }
50 
51 void ConstraintBound::resize(const unsigned int r, const unsigned int c) {
52  PINOCCHIO_CHECK_INPUT_ARGUMENT(r == c, "r and c need to be equal!");
53  m_A.setIdentity(r, c);
54  m_lb.setZero(r);
55  m_ub.setZero(r);
56 }
57 
58 bool ConstraintBound::isEquality() const { return false; }
59 bool ConstraintBound::isInequality() const { return false; }
60 bool ConstraintBound::isBound() const { return true; }
61 
63  assert(false);
64  return m_lb;
65 }
66 const Vector& ConstraintBound::lowerBound() const { return m_lb; }
67 const Vector& ConstraintBound::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 (x.array() <= m_ub.array() + tol).all() &&
91  (x.array() >= m_lb.array() - tol).all();
92 }
tsid::math::ConstraintBound::lowerBound
const Vector & lowerBound() const override
Definition: src/math/constraint-bound.cpp:66
test_Constraint.ub
ub
Definition: test_Constraint.py:13
PINOCCHIO_CHECK_INPUT_ARGUMENT
#define PINOCCHIO_CHECK_INPUT_ARGUMENT(...)
tsid::math::ConstraintBound::cols
unsigned int cols() const override
Definition: src/math/constraint-bound.cpp:46
tsid::math::ConstraintBound::checkConstraint
bool checkConstraint(ConstRefVector x, double tol=1e-6) const override
Definition: src/math/constraint-bound.cpp:89
tsid::math::ConstraintBase
Abstract class representing a linear equality/inequality constraint. Equality constraints are represe...
Definition: constraint-base.hpp:35
c
Vec3f c
tsid::math::ConstraintBase::m_A
Matrix m_A
Definition: constraint-base.hpp:75
tsid::math::ConstraintBound::rows
unsigned int rows() const override
Definition: src/math/constraint-bound.cpp:41
tsid::math
Definition: constraint-base.hpp:26
tsid::math::ConstraintBound::m_lb
Vector m_lb
Definition: math/constraint-bound.hpp:60
r
FCL_REAL r
test_Constraint.tol
int tol
Definition: test_Constraint.py:10
tsid::math::ConstraintBound::isEquality
bool isEquality() const override
Definition: src/math/constraint-bound.cpp:58
size
FCL_REAL size() const
test_Constraint.lb
float lb
Definition: test_Constraint.py:12
tsid::math::Matrix
Eigen::Matrix< Scalar, Eigen::Dynamic, Eigen::Dynamic > Matrix
Definition: math/fwd.hpp:36
tsid::math::ConstraintBound::m_ub
Vector m_ub
Definition: math/constraint-bound.hpp:61
setup.name
name
Definition: setup.in.py:179
tsid::math::ConstRefVector
const typedef Eigen::Ref< const Vector > ConstRefVector
Definition: math/fwd.hpp:48
tsid::math::ConstraintBound::vector
const Vector & vector() const override
Definition: src/math/constraint-bound.cpp:62
tsid::math::Vector
Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > Vector
Definition: math/fwd.hpp:35
tsid::math::ConstraintBound::setVector
bool setVector(ConstRefVector b) override
Definition: src/math/constraint-bound.cpp:76
tsid::math::ConstraintBound::isBound
bool isBound() const override
Definition: src/math/constraint-bound.cpp:60
constraint-bound.hpp
test_Solvers.x
x
Definition: test_Solvers.py:67
tsid::math::ConstraintBound::setLowerBound
bool setLowerBound(ConstRefVector lb) override
Definition: src/math/constraint-bound.cpp:80
tsid::math::ConstraintBound::setUpperBound
bool setUpperBound(ConstRefVector ub) override
Definition: src/math/constraint-bound.cpp:84
tsid::math::ConstraintBound::ConstraintBound
EIGEN_MAKE_ALIGNED_OPERATOR_NEW ConstraintBound(const std::string &name)
Definition: src/math/constraint-bound.cpp:22
tsid::math::ConstraintBound::isInequality
bool isInequality() const override
Definition: src/math/constraint-bound.cpp:59
tsid::math::ConstraintBound::resize
void resize(unsigned int r, unsigned int c) override
Definition: src/math/constraint-bound.cpp:51
tsid::math::ConstraintBound::upperBound
const Vector & upperBound() const override
Definition: src/math/constraint-bound.cpp:67


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