SoPlex Doxygen Documentation
spxdantzigpr.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 spxdantzigpr.h
17  * @brief Dantzig pricer.
18  */
19 #ifndef _SPXDEFAULTPR_H_
20 #define _SPXDEFAULTPR_H_
21 
22 #include <assert.h>
23 
24 #include "spxpricer.h"
25 
26 namespace soplex
27 {
28 
29 /**@brief Dantzig pricer.
30  @ingroup Algo
31 
32  Class SPxDantzigPR is an implementation class of an SPxPricer implementing
33  Dantzig's default pricing strategy, i.e., maximal/minimal reduced cost or
34  maximally violated constraint.
35 
36  See SPxPricer for a class documentation.
37 */
38 class SPxDantzigPR : public SPxPricer
39 {
40 private:
41  int start; /**< index where the search starts */
42 
43  int selectLeavePart(); /**< partial pricing method, define
44  * PARTIAL_PRICING to use */
45  int selectLeaveSparse();/**< sparse pricing method for leaving Simplex */
46 
47  SPxId selectEnterX(); /**< choose the best entering index among columns and rows but prefer sparsity */
48  SPxId selectEnterSparseDim(Real& best,SPxId& id); /**< sparse pricing method for entering Simplex (slack variables)*/
49  SPxId selectEnterSparseCoDim(Real& best, SPxId& id); /**< sparse pricing method for entering Simplex */
50  SPxId selectEnterDenseDim(Real& best, SPxId& id); /**< selectEnter() in dense case (slack variables) */
51  SPxId selectEnterDenseCoDim(Real& best,SPxId& id); /**< selectEnter() in dense case */
52 public:
53 
54  //-------------------------------------
55  /**@name Constructors / destructors */
56  //@{
57  /// default constructor
59  : SPxPricer("Dantzig")
60  , start(0)
61  {}
62  /// copy constructor
63  SPxDantzigPR(const SPxDantzigPR& old )
64  : SPxPricer(old)
65  , start(old.start)
66  {}
67  /// assignment operator
69  {
70  if(this != &rhs)
71  {
73  start = rhs.start;
74  }
75 
76  return *this;
77  }
78  /// destructor
79  virtual ~SPxDantzigPR()
80  {}
81  /// clone function for polymorphism
82  inline virtual SPxPricer* clone() const
83  {
84  return new SPxDantzigPR(*this);
85  }
86  //@}
87 
88 
89  //-------------------------------------
90  /**@name Select enter/leave */
91  //@{
92  ///
93  virtual int selectLeave();
94  ///
95  virtual SPxId selectEnter();
96  //@}
97 };
98 } // namespace soplex
99 #endif // _SPXDEFAULTPRR_H_
100 
101 //-----------------------------------------------------------------------------
102 //Emacs Local Variables:
103 //Emacs mode:c++
104 //Emacs c-basic-offset:3
105 //Emacs tab-width:8
106 //Emacs indent-tabs-mode:nil
107 //Emacs End:
108 //-----------------------------------------------------------------------------