scalar_vertex.h
Go to the documentation of this file.
1 /*********************************************************************
2  *
3  * Software License Agreement
4  *
5  * Copyright (c) 2020,
6  * TU Dortmund - Institute of Control Theory and Systems Engineering.
7  * All rights reserved.
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <https://www.gnu.org/licenses/>.
21  *
22  * Authors: Christoph Rösmann
23  *********************************************************************/
24 
25 #ifndef SRC_OPTIMIZATION_INCLUDE_CORBO_OPTIMIZATION_HYPER_GRAPH_SCALAR_VERTEX_H_
26 #define SRC_OPTIMIZATION_INCLUDE_CORBO_OPTIMIZATION_HYPER_GRAPH_SCALAR_VERTEX_H_
27 
29 
30 #include <corbo-core/types.h>
31 
32 #include <memory>
33 #include <vector>
34 
35 namespace corbo {
36 
50 class ScalarVertex : public VertexInterface
51 {
52  public:
53  using Ptr = std::shared_ptr<ScalarVertex>;
54  using UPtr = std::unique_ptr<ScalarVertex>;
55 
57  ScalarVertex() {}
59  explicit ScalarVertex(double value) : _value(value), _lb(-CORBO_INF_DBL), _ub(CORBO_INF_DBL) {}
60 
62  explicit ScalarVertex(double value, bool fixed) : _value(value), _lb(-CORBO_INF_DBL), _ub(CORBO_INF_DBL), _fixed(fixed) {}
63 
65  explicit ScalarVertex(double value, double lb, double ub) : _value(value), _lb(lb), _ub(ub) {}
66 
68  explicit ScalarVertex(double value, double lb, double ub, bool fixed) : _value(value), _lb(lb), _ub(ub), _fixed(fixed) {}
69 
70  // implements interface method
71  int getDimension() const override { return 1; }
72  // implements interface method
73  int getDimensionUnfixed() const override { return _fixed ? 0 : 1; }
74 
75  // implements interface method
76  void plus(int /*idx*/, double inc) override { _value += inc; }
77  // implements interface method
78  void plus(const double* inc) override { _value += *inc; }
79  // implements interface method
80  void plusUnfixed(const double* inc) override { _value += *inc; }
81 
82  // implements interface method
83  const double* getData() const override { return &_value; }
84  double* getDataRaw() override { return &_value; }
85 
86  // implements interface method
87  void setData(int /*idx*/, double data) override { _value = data; }
88 
89  // directly set all properties
90  void set(double value, double lb, double ub, bool fixed)
91  {
92  _value = value;
93  _lb = lb;
94  _ub = ub;
95  _fixed = fixed;
96  }
97 
98  // implements interface method
99  bool hasFixedComponents() const override { return _fixed; }
100  // implements interface method
101  bool isFixedComponent(int /*idx*/) const override { return _fixed; }
102 
104  void setLowerBound(double lb) { _lb = lb; }
106  void setUpperBound(double ub) { _ub = ub; }
107  // implements interface method
108  void setLowerBounds(const Eigen::Ref<const Eigen::VectorXd>& lb) override { _lb = lb[0]; }
109  // implements interface method
110  void setUpperBounds(const Eigen::Ref<const Eigen::VectorXd>& ub) override { _ub = ub[0]; }
111  // implements interface method
112  void setLowerBound(int /*idx*/, double lb) override { _lb = lb; }
113  // implements interface method
114  void setUpperBound(int /*idx*/, double ub) override { _ub = ub; }
115  // implements interface method
116  bool hasFiniteBounds() const override { return _lb > -CORBO_INF_DBL || _ub < CORBO_INF_DBL; }
117  // implements interface method
118  bool hasFiniteLowerBounds() const override { return _lb > -CORBO_INF_DBL; }
119  // implements interface method
120  bool hasFiniteUpperBounds() const override { return _ub < CORBO_INF_DBL; }
121  // implements interface method
122  bool hasFiniteLowerBound(int /*idx*/) const override { return _lb > -CORBO_INF_DBL; }
123  // implements interface method
124  bool hasFiniteUpperBound(int /*idx*/) const override { return _ub < CORBO_INF_DBL; }
125  // implements interface method
126  int getNumberFiniteLowerBounds(bool unfixed_only) const override
127  {
128  if (unfixed_only && _fixed)
129  return 0;
130  else
131  return (int)hasFiniteLowerBounds();
132  }
133  // implements interface method
134  int getNumberFiniteUpperBounds(bool unfixed_only) const override
135  {
136  if (unfixed_only && _fixed)
137  return 0;
138  else
139  return (int)hasFiniteUpperBounds();
140  }
141  // implements interface method
142  int getNumberFiniteBounds(bool unfixed_only) const override
143  {
144  if (unfixed_only && _fixed)
145  return 0;
146  else
147  return (int)hasFiniteBounds();
148  }
149 
151  void setFixed(bool fixed) { _fixed = fixed; }
152 
153  // implements interface method
154  const double* getLowerBounds() const override { return &_lb; }
155  // implements interface method
156  const double* getUpperBounds() const override { return &_ub; }
157 
158  // Backup values
159  // implements interface method
160  void push() override { _backup.push_back(_value); }
161  // implements interface method
162  void pop() override
163  {
164  top();
165  _backup.pop_back();
166  }
167  // implements interface method
168  void top() override
169  {
170  assert(!_backup.empty());
171  _value = _backup.back();
172  }
173  // implements interface method
174  void discardTop() override { _backup.pop_back(); }
175  // implements interface method
176  void clear() override { _backup.clear(); }
177  // implements interface method
178  int getNumBackups() const override { return (int)_backup.size(); }
179 
181  const double& value() const { return _value; }
183  double& value() { return _value; }
184 
186  const double& values() const { return _value; }
188  double& values() { return _value; }
189 
190  protected:
191  double _value;
192  double _lb;
193  double _ub;
194 
195  bool _fixed = false;
196 
197  std::vector<double> _backup;
198 };
199 
200 } // namespace corbo
201 
202 #endif // SRC_OPTIMIZATION_INCLUDE_CORBO_OPTIMIZATION_HYPER_GRAPH_SCALAR_VERTEX_H_
corbo::ScalarVertex::_ub
double _ub
Definition: scalar_vertex.h:237
corbo::ScalarVertex::setUpperBounds
void setUpperBounds(const Eigen::Ref< const Eigen::VectorXd > &ub) override
Define upper bounds on the vertex values [getDimension() x 1].
Definition: scalar_vertex.h:154
corbo::ScalarVertex::setUpperBound
void setUpperBound(double ub)
Set upper bound.
Definition: scalar_vertex.h:150
corbo::ScalarVertex::discardTop
void discardTop() override
Delete the previously made backup from the stack without restoring it.
Definition: scalar_vertex.h:218
corbo
Definition: communication/include/corbo-communication/utilities.h:37
corbo::ScalarVertex::_value
double _value
Definition: scalar_vertex.h:235
corbo::ScalarVertex::set
void set(double value, double lb, double ub, bool fixed)
Definition: scalar_vertex.h:134
corbo::ScalarVertex::hasFixedComponents
bool hasFixedComponents() const override
Check if the vertex has fixed components.
Definition: scalar_vertex.h:143
corbo::ScalarVertex::top
void top() override
Restore the previously stored values of the backup stack WITHOUT removing them from the stack.
Definition: scalar_vertex.h:212
corbo::ScalarVertex::getDataRaw
double * getDataRaw() override
Get write access to the values of the vertex.
Definition: scalar_vertex.h:128
corbo::ScalarVertex::_lb
double _lb
Definition: scalar_vertex.h:236
corbo::ScalarVertex::getNumberFiniteLowerBounds
int getNumberFiniteLowerBounds(bool unfixed_only) const override
Get number of finite lower bounds.
Definition: scalar_vertex.h:170
corbo::ScalarVertex::_fixed
bool _fixed
Definition: scalar_vertex.h:239
corbo::CORBO_INF_DBL
constexpr const double CORBO_INF_DBL
Representation for infinity (double version)
Definition: core/include/corbo-core/types.h:75
corbo::ScalarVertex::hasFiniteLowerBounds
bool hasFiniteLowerBounds() const override
Check if finite lower bounds are provided.
Definition: scalar_vertex.h:162
corbo::ScalarVertex::push
void push() override
Store all values into a internal backup stack.
Definition: scalar_vertex.h:204
corbo::ScalarVertex::getNumberFiniteBounds
int getNumberFiniteBounds(bool unfixed_only) const override
Get number of finite upper bounds (either upper or lower must be finite)
Definition: scalar_vertex.h:186
corbo::ScalarVertex::setFixed
void setFixed(bool fixed)
Set vertex (un)fixed.
Definition: scalar_vertex.h:195
corbo::ScalarVertex::getData
const double * getData() const override
Get read-only raw access to the values of the vertex.
Definition: scalar_vertex.h:127
corbo::ScalarVertex::setLowerBounds
void setLowerBounds(const Eigen::Ref< const Eigen::VectorXd > &lb) override
Define lower bounds on the vertex values [getDimension() x 1].
Definition: scalar_vertex.h:152
corbo::ScalarVertex::getDimensionUnfixed
int getDimensionUnfixed() const override
Return number of unfixed elements (unfixed elements are skipped as parameters in the Hessian and Jaco...
Definition: scalar_vertex.h:117
corbo::ScalarVertex::plus
void plus(int, double inc) override
Add value to a specific component of the vertex: x[idx] += inc.
Definition: scalar_vertex.h:120
corbo::ScalarVertex::getUpperBounds
const double * getUpperBounds() const override
Read-only raw access to upper bounds [getDimension() x 1].
Definition: scalar_vertex.h:200
corbo::ScalarVertex::Ptr
std::shared_ptr< ScalarVertex > Ptr
Definition: scalar_vertex.h:97
corbo::ScalarVertex::UPtr
std::unique_ptr< ScalarVertex > UPtr
Definition: scalar_vertex.h:98
corbo::ScalarVertex::hasFiniteUpperBound
bool hasFiniteUpperBound(int) const override
Check if finite upper bound for a single component is provided.
Definition: scalar_vertex.h:168
corbo::ScalarVertex::getLowerBounds
const double * getLowerBounds() const override
Read-only raw access to lower bounds [getDimension() x 1].
Definition: scalar_vertex.h:198
corbo::ScalarVertex::setData
void setData(int, double data) override
Write data to to a specific component.
Definition: scalar_vertex.h:131
corbo::ScalarVertex::getNumBackups
int getNumBackups() const override
Return the current size/number of backups of the backup stack.
Definition: scalar_vertex.h:222
corbo::ScalarVertex::hasFiniteLowerBound
bool hasFiniteLowerBound(int) const override
Check if finite lower bound for a single component is provided.
Definition: scalar_vertex.h:166
corbo::ScalarVertex::getDimension
int getDimension() const override
Return number of elements/values/components stored in this vertex.
Definition: scalar_vertex.h:115
Eigen::Ref
A matrix or vector expression mapping an existing expression.
Definition: Ref.h:192
corbo::ScalarVertex::value
const double & value() const
Get underlying value.
Definition: scalar_vertex.h:225
types.h
vertex_interface.h
corbo::ScalarVertex::values
const double & values() const
Get underlying value (this method is for compatibility purposes)
Definition: scalar_vertex.h:230
corbo::ScalarVertex::getNumberFiniteUpperBounds
int getNumberFiniteUpperBounds(bool unfixed_only) const override
Get number of finite upper bounds.
Definition: scalar_vertex.h:178
corbo::ScalarVertex::clear
void clear() override
Clear complete backup container.
Definition: scalar_vertex.h:220
corbo::ScalarVertex::hasFiniteUpperBounds
bool hasFiniteUpperBounds() const override
Check if finite upper bounds are provided.
Definition: scalar_vertex.h:164
corbo::ScalarVertex::ScalarVertex
ScalarVertex()
Default constructor.
Definition: scalar_vertex.h:101
corbo::ScalarVertex::hasFiniteBounds
bool hasFiniteBounds() const override
Check if finite bounds (lower or upper) are provided.
Definition: scalar_vertex.h:160
corbo::ScalarVertex::isFixedComponent
bool isFixedComponent(int) const override
Check if individual components are fixed or unfixed.
Definition: scalar_vertex.h:145
corbo::ScalarVertex::pop
void pop() override
Restore the previously stored values of the backup stack and remove them from the stack.
Definition: scalar_vertex.h:206
corbo::ScalarVertex::setLowerBound
void setLowerBound(double lb)
Set lower bound.
Definition: scalar_vertex.h:148
corbo::ScalarVertex::_backup
std::vector< double > _backup
Definition: scalar_vertex.h:241
corbo::ScalarVertex::plusUnfixed
void plusUnfixed(const double *inc) override
Define the increment for the unfixed components of the vertex: x += inc with dim(inc)=getDimensionUnf...
Definition: scalar_vertex.h:124


control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:06:10