26 const unsigned int rows,
27 const unsigned int cols)
37 "The number of rows of A and lb do not match");
39 "The number of rows of A and ub do not match");
43 assert(
m_A.rows() ==
m_lb.rows());
44 assert(
m_A.rows() ==
m_ub.rows());
45 return (
unsigned int)
m_A.rows();
49 return (
unsigned int)
m_A.cols();
90 return ((
m_A * x).array() <=
m_ub.array() +
tol).all() &&
const Vector & lowerBound() const
const Eigen::Ref< const Matrix > ConstRefMatrix
bool setLowerBound(ConstRefVector lb)
bool setVector(ConstRefVector b)
bool setUpperBound(ConstRefVector ub)
Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > Vector
const Vector & vector() const
bool isInequality() const
void resize(const unsigned int r, const unsigned int c)
const Eigen::Ref< const Vector > ConstRefVector
unsigned int rows() const
const Vector & upperBound() const
bool checkConstraint(ConstRefVector x, double tol=1e-6) const
virtual const std::string & name() const
unsigned int cols() 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(...)