Ipopt  3.11.8
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
IpLowRankUpdateSymMatrix.hpp
Go to the documentation of this file.
1 // Copyright (C) 2005, 2008 International Business Machines and others.
2 // All Rights Reserved.
3 // This code is published under the Eclipse Public License.
4 //
5 // $Id: IpLowRankUpdateSymMatrix.hpp 1861 2010-12-21 21:34:47Z andreasw $
6 //
7 // Authors: Andreas Waechter IBM 2005-12-25
8 
9 #ifndef __IPLOWRANKUPDATESYMMATRIX_HPP__
10 #define __IPLOWRANKUPDATESYMMATRIX_HPP__
11 
12 #include "IpUtils.hpp"
13 #include "IpSymMatrix.hpp"
14 #include "IpMultiVectorMatrix.hpp"
15 
16 namespace Ipopt
17 {
18 
19  /* forward declarations */
20  class LowRankUpdateSymMatrixSpace;
21 
32  {
33  public:
34 
37 
40 
44 
46  void SetDiag(const Vector& D)
47  {
48  D_ = &D;
49  ObjectChanged();
50  }
51 
54  {
55  return D_;
56  }
57 
59  void SetV(const MultiVectorMatrix& V)
60  {
61  V_ = &V;
62  ObjectChanged();
63  }
64 
67  {
68  return V_;
69  }
70 
72  void SetU(const MultiVectorMatrix& U)
73  {
74  U_ = &U;
75  ObjectChanged();
76  }
77 
80  {
81  return U_;
82  }
83 
87 
91 
94  bool ReducedDiag() const;
95 
96  protected:
99  virtual void MultVectorImpl(Number alpha, const Vector& x,
100  Number beta, Vector& y) const;
101 
104  virtual bool HasValidNumbersImpl() const;
105 
106  virtual void ComputeRowAMaxImpl(Vector& rows_norms, bool init) const;
107 
108  virtual void ComputeColAMaxImpl(Vector& cols_norms, bool init) const;
109 
110  virtual void PrintImpl(const Journalist& jnlst,
111  EJournalLevel level,
112  EJournalCategory category,
113  const std::string& name,
114  Index indent,
115  const std::string& prefix) const;
117 
118  private:
129 
132 
134  void operator=(const LowRankUpdateSymMatrix&);
136 
139 
142 
145 
148  };
149 
152  {
153  public:
160  bool reduced_diag)
161  :
162  SymMatrixSpace(dim),
163  P_LowRank_(P_LowRank),
164  lowrank_vector_space_(LowRankVectorSpace),
165  reduced_diag_(reduced_diag)
166  {
168  }
169 
172  {}
174 
177  virtual SymMatrix* MakeNewSymMatrix() const
178  {
180  }
181 
184  {
185  return new LowRankUpdateSymMatrix(this);
186  }
187 
189  {
190  return P_LowRank_;
191  }
192 
194  {
195  return lowrank_vector_space_;
196  }
197 
198  bool ReducedDiag() const
199  {
200  return reduced_diag_;
201  }
202 
203  private:
214 
217 
221 
226 
230 
234  };
235 
236  inline
238  {
239  return owner_space_->P_LowRank();
240  }
241 
242  inline
244  {
245  return owner_space_->LowRankVectorSpace();
246  }
247 
248  inline
250  {
251  return owner_space_->ReducedDiag();
252  }
253 
254 } // namespace Ipopt
255 #endif