leaves.cc
Go to the documentation of this file.
1 /******************************************************************************
2 Copyright (c) 2017, Alexander W Winkler. All rights reserved.
3 
4 Redistribution and use in source and binary forms, with or without
5 modification, are permitted provided that the following conditions are met:
6 
7 * Redistributions of source code must retain the above copyright notice, this
8  list of conditions and the following disclaimer.
9 
10 * Redistributions in binary form must reproduce the above copyright notice,
11  this list of conditions and the following disclaimer in the documentation
12  and/or other materials provided with the distribution.
13 
14 * Neither the name of the copyright holder nor the names of its
15  contributors may be used to endorse or promote products derived from
16  this software without specific prior written permission.
17 
18 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 ******************************************************************************/
29 
30 #include <ifopt/variable_set.h>
31 #include <ifopt/constraint_set.h>
32 #include <ifopt/cost_term.h>
33 
34 #include <iostream>
35 #include <iomanip>
36 
37 
38 namespace ifopt {
39 
40 VariableSet::VariableSet(int n_var, const std::string& name)
41  : Component(n_var, name)
42 {
43 }
44 
45 ConstraintSet::ConstraintSet (int row_count, const std::string& name)
46  : Component(row_count, name)
47 {
48 }
49 
52 {
53  Jacobian jacobian(GetRows(), variables_->GetRows());
54 
55  int col = 0;
56  Jacobian jac;
57  std::vector< Eigen::Triplet<double> > triplet_list;
58 
59  for (const auto& vars : variables_->GetComponents()) {
60  int n = vars->GetRows();
61  jac.resize(GetRows(), n);
62 
63  FillJacobianBlock(vars->GetName(), jac);
64  // reserve space for the new elements to reduce memory allocation
65  triplet_list.reserve(triplet_list.size()+jac.nonZeros());
66 
67  // create triplets for the derivative at the correct position in the overall Jacobian
68  for (int k=0; k<jac.outerSize(); ++k)
69  for (Jacobian::InnerIterator it(jac,k); it; ++it)
70  triplet_list.push_back(Eigen::Triplet<double>(it.row(), col+it.col(), it.value()));
71  col += n;
72  }
73 
74  // transform triplet vector into sparse matrix
75  jacobian.setFromTriplets(triplet_list.begin(), triplet_list.end());
76  return jacobian;
77 }
78 
79 void
81 {
82  variables_ = x;
84 }
85 
86 CostTerm::CostTerm (const std::string& name) :ConstraintSet(1, name)
87 {
88 }
89 
92 {
93  VectorXd cost(1);
94  cost(0) = GetCost();
95  return cost;
96 }
97 
100 {
101  return VecBound(GetRows(), NoBound);
102 }
103 
104 void
105 CostTerm::Print (double tol, int& index) const
106 {
107  // only one scalar cost value
108  double cost = GetValues()(0);
109 
110  std::cout.precision(2);
111  std::cout << std::fixed
112  << std::left
113  << std::setw(30) << GetName()
114  << std::right
115  << std::setw(4) << GetRows()
116  << std::setw(9) << index
117  << std::setfill ('.')
118  << std::setw(7) << index+GetRows()-1
119  << std::setfill (' ')
120  << std::setw(12) << cost
121  << std::endl;
122 }
123 
124 } /* namespace opt */
virtual double GetCost() const =0
Returns the scalar cost term calculated from the variables.
A container holding a set of related constraints.
Composite::Ptr VariablesPtr
VecBound GetBounds() const final
Returns infinite bounds (e.g. no bounds).
Definition: leaves.cc:99
ConstraintSet(int n_constraints, const std::string &name)
Creates constraints on the variables x.
Definition: leaves.cc:45
void LinkWithVariables(const VariablesPtr &x)
Connects the constraint with the optimization variables.
Definition: leaves.cc:80
std::string GetName() const
Returns the name (id) of this component.
Definition: composite.cc:56
void Print(double tol, int &index) const final
Definition: leaves.cc:105
static const Bounds NoBound
Definition: bounds.h:67
virtual void FillJacobianBlock(std::string var_set, Jacobian &jac_block) const =0
Set individual Jacobians corresponding to each decision variable set.
VariableSet(int n_var, const std::string &name)
Creates a set of variables representing a single concept.
Definition: leaves.cc:40
Eigen::SparseMatrix< double, Eigen::RowMajor > Jacobian
Definition: composite.h:67
common namespace for all elements in this library.
Definition: bounds.h:33
CostTerm(const std::string &name)
Definition: leaves.cc:86
Interface representing either Variable, Cost or Constraint.
Definition: composite.h:63
VectorXd GetValues() const final
Wrapper function that converts double to Eigen::VectorXd.
Definition: leaves.cc:91
VariablesPtr variables_
virtual void InitVariableDependedQuantities(const VariablesPtr &x_init)
Initialize quantities that depend on the optimization variables.
Jacobian GetJacobian() const final
The matrix of derivatives for these constraints and variables.
Definition: leaves.cc:51
std::vector< Bounds > VecBound
Definition: composite.h:69
int GetRows() const
Returns the number of rows of this component.
Definition: composite.cc:44
Eigen::VectorXd VectorXd
Definition: composite.h:68


ifopt
Author(s): Alexander W. Winkler
autogenerated on Fri May 17 2019 02:29:49