Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00036 #ifndef IFOPT_INCLUDE_OPT_COMPOSITE_H_
00037 #define IFOPT_INCLUDE_OPT_COMPOSITE_H_
00038
00039 #include <memory>
00040 #include <string>
00041 #include <vector>
00042
00043 #include <Eigen/Dense>
00044 #include <Eigen/Sparse>
00045
00046 #include "bounds.h"
00047
00048 namespace ifopt {
00049
00063 class Component {
00064 public:
00065 using Ptr = std::shared_ptr<Component>;
00066
00067 using Jacobian = Eigen::SparseMatrix<double, Eigen::RowMajor>;
00068 using VectorXd = Eigen::VectorXd;
00069 using VecBound = std::vector<Bounds>;
00070
00081 Component(int num_rows, const std::string& name);
00082 virtual ~Component() = default;
00083
00091 virtual VectorXd GetValues() const = 0;
00092
00100 virtual VecBound GetBounds() const = 0;
00101
00108 virtual void SetVariables(const VectorXd& x) = 0;
00109
00117 virtual Jacobian GetJacobian() const = 0;
00118
00122 int GetRows() const;
00123
00127 std::string GetName() const;
00128
00134 virtual void Print(double tolerance, int& index_start) const;
00135
00142 void SetRows(int num_rows);
00143 static const int kSpecifyLater = -1;
00144
00145 private:
00146 int num_rows_ = kSpecifyLater;
00147 std::string name_;
00148 };
00149
00150
00151
00162 class Composite : public Component {
00163 public:
00164 using Ptr = std::shared_ptr<Composite>;
00165 using ComponentVec = std::vector<Component::Ptr>;
00166
00175 Composite(const std::string& name, bool is_cost);
00176 virtual ~Composite() = default;
00177
00178
00179 VectorXd GetValues () const override;
00180 Jacobian GetJacobian () const override;
00181 VecBound GetBounds () const override;
00182 void SetVariables(const VectorXd& x) override;
00183 void PrintAll() const;
00184
00190 const Component::Ptr GetComponent(std::string name) const;
00191
00198 template<typename T> std::shared_ptr<T>
00199 GetComponent(const std::string& name) const;
00200
00204 void AddComponent (const Component::Ptr&);
00205
00209 void ClearComponents();
00210
00214 const ComponentVec GetComponents() const;
00215
00216 private:
00217 ComponentVec components_;
00218 bool is_cost_;
00219 };
00220
00221
00222
00223 template<typename T>
00224 std::shared_ptr<T> Composite::GetComponent(const std::string& name) const
00225 {
00226 Component::Ptr c = GetComponent(name);
00227 return std::dynamic_pointer_cast<T>(c);
00228 }
00229
00230
00231 }
00232
00233 #endif