Go to the documentation of this file.
25 #ifndef SRC_OPTIMIZATION_INCLUDE_CORBO_OPTIMIZATION_HYPER_GRAPH_SCALAR_VERTEX_H_
26 #define SRC_OPTIMIZATION_INCLUDE_CORBO_OPTIMIZATION_HYPER_GRAPH_SCALAR_VERTEX_H_
50 class ScalarVertex :
public VertexInterface
53 using Ptr = std::shared_ptr<ScalarVertex>;
54 using UPtr = std::unique_ptr<ScalarVertex>;
76 void plus(
int ,
double inc)
override {
_value += inc; }
78 void plus(
const double* inc)
override {
_value += *inc; }
90 void set(
double value,
double lb,
double ub,
bool fixed)
136 if (unfixed_only &&
_fixed)
144 if (unfixed_only &&
_fixed)
202 #endif // SRC_OPTIMIZATION_INCLUDE_CORBO_OPTIMIZATION_HYPER_GRAPH_SCALAR_VERTEX_H_
void setUpperBounds(const Eigen::Ref< const Eigen::VectorXd > &ub) override
Define upper bounds on the vertex values [getDimension() x 1].
void setUpperBound(double ub)
Set upper bound.
void discardTop() override
Delete the previously made backup from the stack without restoring it.
void set(double value, double lb, double ub, bool fixed)
bool hasFixedComponents() const override
Check if the vertex has fixed components.
void top() override
Restore the previously stored values of the backup stack WITHOUT removing them from the stack.
double * getDataRaw() override
Get write access to the values of the vertex.
int getNumberFiniteLowerBounds(bool unfixed_only) const override
Get number of finite lower bounds.
constexpr const double CORBO_INF_DBL
Representation for infinity (double version)
bool hasFiniteLowerBounds() const override
Check if finite lower bounds are provided.
void push() override
Store all values into a internal backup stack.
int getNumberFiniteBounds(bool unfixed_only) const override
Get number of finite upper bounds (either upper or lower must be finite)
void setFixed(bool fixed)
Set vertex (un)fixed.
const double * getData() const override
Get read-only raw access to the values of the vertex.
void setLowerBounds(const Eigen::Ref< const Eigen::VectorXd > &lb) override
Define lower bounds on the vertex values [getDimension() x 1].
int getDimensionUnfixed() const override
Return number of unfixed elements (unfixed elements are skipped as parameters in the Hessian and Jaco...
void plus(int, double inc) override
Add value to a specific component of the vertex: x[idx] += inc.
const double * getUpperBounds() const override
Read-only raw access to upper bounds [getDimension() x 1].
std::shared_ptr< ScalarVertex > Ptr
std::unique_ptr< ScalarVertex > UPtr
bool hasFiniteUpperBound(int) const override
Check if finite upper bound for a single component is provided.
const double * getLowerBounds() const override
Read-only raw access to lower bounds [getDimension() x 1].
void setData(int, double data) override
Write data to to a specific component.
int getNumBackups() const override
Return the current size/number of backups of the backup stack.
bool hasFiniteLowerBound(int) const override
Check if finite lower bound for a single component is provided.
int getDimension() const override
Return number of elements/values/components stored in this vertex.
A matrix or vector expression mapping an existing expression.
const double & value() const
Get underlying value.
const double & values() const
Get underlying value (this method is for compatibility purposes)
int getNumberFiniteUpperBounds(bool unfixed_only) const override
Get number of finite upper bounds.
void clear() override
Clear complete backup container.
bool hasFiniteUpperBounds() const override
Check if finite upper bounds are provided.
ScalarVertex()
Default constructor.
bool hasFiniteBounds() const override
Check if finite bounds (lower or upper) are provided.
bool isFixedComponent(int) const override
Check if individual components are fixed or unfixed.
void pop() override
Restore the previously stored values of the backup stack and remove them from the stack.
void setLowerBound(double lb)
Set lower bound.
std::vector< double > _backup
void plusUnfixed(const double *inc) override
Define the increment for the unfixed components of the vertex: x += inc with dim(inc)=getDimensionUnf...
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:06:10