23 #ifndef VECTOR_SE_VERTEX_H_ 24 #define VECTOR_SE_VERTEX_H_ 30 #include <corbo-core/types.h> 57 using Ptr = std::shared_ptr<VectorVertexSE2>;
58 using UPtr = std::unique_ptr<VectorVertexSE2>;
79 void plus(
int idx,
double inc)
override 87 void plus(
const double* inc)
override 99 void setData(
int idx,
double data)
override 111 assert(values.size() == lb.size());
112 assert(values.size() == ub.size());
113 assert(values.size() >= 3);
141 using Ptr = std::shared_ptr<PartiallyFixedVectorVertexSE2>;
142 using UPtr = std::unique_ptr<PartiallyFixedVectorVertexSE2>;
173 :
VectorVertexSE2(values, lb, ub),
_fixed(
Eigen::Array<bool, -1, 1>::Constant(values.size(), false)), _num_unfixed(values.size())
184 _fixed.setConstant(dim,
false);
192 assert(values.size() == lb.size());
193 assert(values.size() == ub.size());
194 assert(values.size() >= 3);
207 assert(values.size() == lb.size());
208 assert(values.size() == ub.size());
209 assert(values.size() >= 3);
261 if (unfixed_only && _num_unfixed > 0)
277 if (unfixed_only && _num_unfixed > 0)
293 if (unfixed_only && _num_unfixed > 0)
316 #endif // SRC_OPTIMIZATION_INCLUDE_CORBO_OPTIMIZATION_HYPER_GRAPH_VECTOR_VERTEX_H_
bool isFixedComponent(int idx) const override
void setFixed(const Eigen::Ref< const Eigen::Array< bool, -1, 1 >> &fixed)
Set logical array [dimension() x 1] in order to fix selected components.
PartiallyFixedVectorVertexSE2(const Eigen::Ref< const Eigen::VectorXd > &values, const Eigen::Ref< const Eigen::VectorXd > &lb, const Eigen::Ref< const Eigen::VectorXd > &ub)
Construct vertex with given values, lower and upper bounds.
int getDimensionUnfixed() const override
void plusUnfixed(const double *inc) override
virtual void setDimension(int dim)
void plus(const double *inc) override
VectorVertexSE2(int dimension, bool fixed=false)
Construct and allocate memory for a given dimension.
#define EIGEN_MAKE_ALIGNED_OPERATOR_NEW
std::shared_ptr< VectorVertex > Ptr
VectorVertexSE2 with support for partially fixed components.
Vertex specialization for vectors in SE2.
PartiallyFixedVectorVertexSE2(int dimension, const Eigen::Ref< const Eigen::Array< bool, -1, 1 >> &fixed)
Construct and allocate memory for a given dimension.
void setFixed(int idx, bool fixed)
Set component with idx (0 <= idx < dimension()) to (un)fixed.
int getNumberFiniteLowerBounds(bool unfixed_only) const override
VectorVertexSE2(const Eigen::Ref< const Eigen::VectorXd > &values, const Eigen::Ref< const Eigen::VectorXd > &lb, const Eigen::Ref< const Eigen::VectorXd > &ub, bool fixed=false)
Construct vertex with given values, lower and upper bounds.
void setUpperBounds(const Eigen::Ref< const Eigen::VectorXd > &ub) override
void setFixed(bool fixed) override
PartiallyFixedVectorVertexSE2(const Eigen::Ref< const Eigen::VectorXd > &values)
Construct vertex with given values.
constexpr const double CORBO_INF_DBL
void plus(int idx, double inc) override
VectorVertexSE2(const Eigen::Ref< const Eigen::VectorXd > &values, bool fixed=false)
Construct vertex with given values.
int getDimension() const override
const Eigen::Array< bool, -1, 1 > fixedArray() const
Read-only access to the underlying logical array for fixed components.
PartiallyFixedVectorVertexSE2(const Eigen::Ref< const Eigen::VectorXd > &values, const Eigen::Ref< const Eigen::Array< bool, -1, 1 >> &fixed)
Construct vertex with given values and fixed components.
Eigen::Array< bool, -1, 1 > _fixed
bool hasFixedComponents() const override
VectorVertexSE2(bool fixed)
void setLowerBounds(const Eigen::Ref< const Eigen::VectorXd > &lb) override
double normalize_theta(double theta)
normalize angle to interval [-pi, pi)
virtual void setFixed(bool fixed)
VectorVertexSE2()=default
Default constructor.
const Eigen::VectorXd & values() const
PartiallyFixedVectorVertexSE2(int dimension)
int getNumberFiniteBounds(bool unfixed_only) const override
std::unique_ptr< VectorVertex > UPtr
void plusUnfixed(const double *inc) override
void setDimension(int dim) override
int getNumberFiniteUpperBounds(bool unfixed_only) const override
void setData(int idx, double data) override