SoPlex Doxygen Documentation
spxweightpr.h
Go to the documentation of this file.
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2 /* */
3 /* This file is part of the class library */
4 /* SoPlex --- the Sequential object-oriented simPlex. */
5 /* */
6 /* Copyright (C) 1996-2012 Konrad-Zuse-Zentrum */
7 /* fuer Informationstechnik Berlin */
8 /* */
9 /* SoPlex is distributed under the terms of the ZIB Academic Licence. */
10 /* */
11 /* You should have received a copy of the ZIB Academic License */
12 /* along with SoPlex; see the file COPYING. If not email to soplex@zib.de. */
13 /* */
14 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
15 
16 /**@file spxweightpr.h
17  * @brief Weighted pricing.
18  */
19 #ifndef _SPXWEIGHTPR_H_
20 #define _SPXWEIGHTPR_H_
21 
22 #include "spxdefines.h"
23 #include "spxpricer.h"
24 
25 namespace soplex
26 {
27 
28 /**@brief Weighted pricing.
29  @ingroup Algo
30 
31  Class SPxWeightPR is an implemantation class of SPxPricer that uses
32  weights for columns and rows for selecting the Simplex pivots. The weights
33  are computed by methods #computeCP() and #computeRP() which may be
34  overridden by derived classes.
35 
36  The weights are interpreted as follows: The higher a value is, the more
37  likely the corresponding row or column is set on one of its bounds.
38 
39  See SPxPricer for a class documentation.
40 */
41 class SPxWeightPR : public SPxPricer
42 {
43 private:
44 
45  //-------------------------------------
46  /**@name Data */
47  //@{
48  /// column penalties
50  /// row penalties
52  /// penalties for leaving alg
54  ///
55  const Real* penalty;
56  ///
57  const Real* coPenalty;
58  /// length of objective vector.
60  //@}
61 
62  //-------------------------------------
63  /**@name Private helpers */
64  //@{
65  /// compute leave penalties.
66  void computeLeavePenalty(int start, int end);
67  /// compute weights for columns.
68  void computeCP(int start, int end);
69  /// compute weights for rows.
70  void computeRP(int start, int end);
71  //@}
72 
73 public:
74 
75  //-------------------------------------
76  /**@name Construction / destruction */
77  //@{
78  /// default constructor
80  : SPxPricer("Weight")
81  {}
82  /// copy constructor
83  SPxWeightPR( const SPxWeightPR& old)
84  : SPxPricer(old)
85  , cPenalty(old.cPenalty)
86  , rPenalty(old.rPenalty)
88  , objlength(old.objlength)
89  {
90  if (old.penalty == old.rPenalty.get_const_ptr())
91  {
94  }
95  else if (old.penalty == old.cPenalty.get_const_ptr())
96  {
99  }
100  // otherwise, old.penalty and old.coPenalty are not set and do not have to be copied
101  }
102  /// assignment operator
104  {
105  if(this != &rhs)
106  {
108  cPenalty = rhs.cPenalty;
109  rPenalty = rhs.rPenalty;
111  objlength = rhs.objlength;
112  if (rhs.penalty == rhs.rPenalty.get_const_ptr())
113  {
116  }
117  else if (rhs.penalty == rhs.cPenalty.get_const_ptr())
118  {
121  }
122  // otherwise, old.penalty and old.coPenalty are not set and do not have to be copied
123  }
124 
125  return *this;
126  }
127  /// destructor
128  virtual ~SPxWeightPR()
129  {}
130  /// clone function for polymorphism
131  inline virtual SPxPricer* clone() const
132  {
133  return new SPxWeightPR(*this);
134  }
135  //@}
136 
137  //-------------------------------------
138  /**@name Access / modification */
139  //@{
140  /// sets the solver
141  virtual void load(SPxSolver* base);
142  /// set entering/leaving algorithm
143  void setType(SPxSolver::Type tp);
144  /// set row/column representation
146  ///
147  virtual int selectLeave();
148  ///
149  virtual SPxId selectEnter();
150  /// \p n vectors have been added to the loaded LP.
151  virtual void addedVecs (int n);
152  /// \p n covectors have been added to the loaded LP.
153  virtual void addedCoVecs(int n);
154  /// \p the i'th vector has been removed from the loaded LP.
155  virtual void removedVec(int i);
156  /// \p the i'th covector has been removed from the loaded LP.
157  virtual void removedCoVec(int i);
158  /// \p n vectors have been removed from the loaded LP.
159  virtual void removedVecs(const int perm[]);
160  /// \p n covectors have been removed from the loaded LP.
161  virtual void removedCoVecs(const int perm[]);
162  //@}
163 
164  //-------------------------------------
165  /**@name Consistency check */
166  //@{
167  /// checks for consistency
168  virtual bool isConsistent() const;
169  //@}
170 };
171 } // namespace soplex
172 #endif // _SPXWEIGHTPR_H_
173 
174 //-----------------------------------------------------------------------------
175 //Emacs Local Variables:
176 //Emacs mode:c++
177 //Emacs c-basic-offset:3
178 //Emacs tab-width:8
179 //Emacs indent-tabs-mode:nil
180 //Emacs End:
181 //-----------------------------------------------------------------------------