SoPlex Doxygen Documentation
spxsteeppr.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 
17 /**@file spxsteeppr.h
18  * @brief Steepest edge pricer.
19  */
20 #ifndef _SPXSTEEPPR_H_
21 #define _SPXSTEEPPR_H_
22 
23 
24 #include <assert.h>
25 
26 #include "spxdefines.h"
27 #include "spxpricer.h"
28 #include "random.h"
29 
30 namespace soplex
31 {
32 
33 /**@brief Steepest edge pricer.
34  @ingroup Algo
35 
36  Class SPxSteepPR implements a steepest edge pricer to be used with
37  SoPlex.
38 
39  See SPxPricer for a class documentation.
40 */
41 class SPxSteepPR : public SPxPricer
42 {
43 public:
44 
45  //-------------------------------------
46  /**@name Types */
47  //@{
48  /// How to setup the direction multipliers.
49  /** Possible settings are #EXACT for starting with exactly computed
50  values, or #DEFAULT for starting with multipliers set to 1. The
51  latter is the default.
52  */
53  enum Setup {
54  EXACT, ///< starting with exactly computed values
55  DEFAULT ///< starting with multipliers set to 1
56  };
57  //@}
58  /// setup steepest edge weights
59  void setupWeights(SPxSolver::Type type);
60 
61 private:
62 
63  //-------------------------------------
64  /**@name Data */
65  //@{
66  /// vector of pricing penalties
68  /// vector of pricing penalties
70  /// working vector
72  /// working vector
74  ///
76  ///
77  int prefSetup;
78  /// preference multiplier for selecting as pivot
80  /// preference multiplier for selecting as pivot
82  ///
84  /// setup type.
86  /// accuracy for computing steepest directions.
88  /// index at which partial pricing should start
90 
91  //@}
92 
93  //-------------------------------------
94  /**@name Preferences */
95  //@{
96  ///
97  void setupPrefsX(Real mult, Real /*tie*/, Real /*cotie*/, Real shift, Real coshift);
98  ///
100  //@}
101 
102 public:
103 
104  //-------------------------------------
105  /**@name Construction / destruction */
106  //@{
107  ///
108  SPxSteepPR(const char* name = "Steep", Setup mode = DEFAULT)
109  : SPxPricer(name)
110  , workRhs (0, 1e-16)
111  , setup (mode)
112  , accuracy(1e-4)
113  , startpricing(0)
114  {
115  assert(isConsistent());
116  }
117  /// copy constructor
118  SPxSteepPR( const SPxSteepPR& old)
119  : SPxPricer(old)
120  , penalty(old.penalty)
121  , coPenalty(old.coPenalty)
122  , workVec(old.workVec)
123  , workRhs(old.workRhs)
124  , pi_p(old.pi_p)
125  , prefSetup(old.prefSetup)
126  , coPref(old.coPref)
127  , pref(old.pref)
128  , leavePref(old.leavePref)
129  , setup(old.setup)
130  , accuracy(old.accuracy)
132  {
133  assert(isConsistent());
134  }
135  /// assignment operator
137  {
138  if(this != &rhs)
139  {
141  penalty = rhs.penalty;
142  coPenalty = rhs.coPenalty;
143  workVec = rhs.workVec;
144  workRhs = rhs.workRhs;
145  pi_p = rhs.pi_p;
146  prefSetup = rhs.prefSetup;
147  coPref = rhs.coPref;
148  pref = rhs.pref;
149  leavePref = rhs.leavePref;
150  setup = rhs.setup;
151  accuracy = rhs.accuracy;
153 
154  assert(isConsistent());
155  }
156 
157  return *this;
158  }
159  /// destructor
160  virtual ~SPxSteepPR()
161  {}
162  /// clone function for polymorphism
163  inline virtual SPxPricer* clone() const
164  {
165  return new SPxSteepPR(*this);
166  }
167  //@}
168 
169  //-------------------------------------
170  /**@name Access / modification */
171  //@{
172  /// sets the solver
173  virtual void load(SPxSolver* base);
174  /// clear solver and preferences
175  virtual void clear();
176  /// set entering/leaving algorithm
177  virtual void setType(SPxSolver::Type);
178  /// set row/column representation
179  virtual void setRep(SPxSolver::Representation rep);
180  ///
181  virtual int selectLeave();
182  /// implementation of partial pricing
183  int selectLeavePart();
184  /// implementation of sparse pricing in the leaving Simplex
185  int selectLeaveSparse();
186  ///
187  virtual void left4(int n, SPxId id);
188  ///
189  virtual SPxId selectEnter();
190  /// choose the best entering index among columns and rows but prefer sparsity
192  /// implementation of sparse pricing for the entering Simplex (slack variables)
193  SPxId selectEnterSparseDim(Real& best, SPxId enterId);
194  /// implementation of sparse pricing for the entering Simplex
195  SPxId selectEnterSparseCoDim(Real& best, SPxId enterId);
196  /// implementation of selectEnter() in dense case (slack variables)
197  SPxId selectEnterDenseDim(Real& best, SPxId enterId);
198  /// implementation of selectEnter() in dense case
199  SPxId selectEnterDenseCoDim(Real& best, SPxId enterId);
200  ///
201  virtual void entered4(SPxId id, int n);
202  /// \p n vectors have been added to loaded LP.
203  virtual void addedVecs (int n);
204  /// \p n covectors have been added to loaded LP.
205  virtual void addedCoVecs(int n);
206  /// \p the i'th vector has been removed from the loaded LP.
207  virtual void removedVec(int i);
208  /// \p the i'th covector has been removed from the loaded LP.
209  virtual void removedCoVec(int i);
210  /// \p n vectors have been removed from loaded LP.
211  virtual void removedVecs(const int perm[]);
212  /// \p n covectors have been removed from loaded LP.
213  virtual void removedCoVecs(const int perm[]);
214  //@}
215 
216  //-------------------------------------
217  /**@name Consistency check */
218  //@{
219  ///
220  virtual bool isConsistent() const;
221  //@}
222 };
223 
224 } // namespace soplex
225 #endif // _SPXSTEEPPR_H_
226 
227 //-----------------------------------------------------------------------------
228 //Emacs Local Variables:
229 //Emacs mode:c++
230 //Emacs c-basic-offset:3
231 //Emacs tab-width:8
232 //Emacs indent-tabs-mode:nil
233 //Emacs End:
234 //-----------------------------------------------------------------------------