SoPlex Doxygen Documentation
spxweightst.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 spxweightst.h
18  * @brief Weighted start basis.
19  */
20 #ifndef _SPXWEIGHTST_H_
21 #define _SPXWEIGHTST_H_
22 
23 
24 #include <assert.h>
25 
26 #include "spxdefines.h"
27 #include "spxstarter.h"
28 #include "dataarray.h"
29 
30 namespace soplex
31 {
32 
33 /**@brief Weighted start basis.
34  @ingroup Algo
35 
36  Class SPxWeightST is an implementation of a SPxStarter for generating a
37  Simplex starting basis. Using method #setupWeights() it sets up arrays
38  #weight and #coWeight, or equivalently #rowWeight and #colWeight.
39  (#rowWeight and #colWeight are just pointers initialized to #weight and
40  #coWeight according to the representation of SoPlex \p base passed to
41  method #generate().)
42 
43  The weight values are then used to setup a starting basis for the LP:
44  vectors with low values are likely to become dual (i.e. basic for a column
45  basis) and such with high values are likely to become primal (i.e. nonbasic
46  for a column basis).
47 
48  However, if a variable having an upper and lower bound is to become primal,
49  there is still a choice for setting it either to its upper or lower bound.
50  Members #rowRight and #colUp are used to determine where to set a primal
51  variable. If #rowRight[i] is set to a nonzero value, the right-hand side
52  inequality is set tightly for the \p i 'th to become primal. Analogously, If
53  #colUp[j] is nonzero, the \p j 'th variable will be set to its upper bound
54  if it becomes primal.
55 */
56 class SPxWeightST : public SPxStarter
57 {
58 private:
59 
60  //-----------------------------------
61  /**@name Private data */
62  //@{
63  ///
65  ///
67  ///
69  //@}
70 
71  //-----------------------------------
72  /**@name Private helpers */
73  //@{
74  ///
75  void setPrimalStatus(SPxBasis::Desc&, const SPxSolver&, const SPxId&);
76  //@}
77 
78 protected:
79 
80  //-----------------------------------
81  /**@name Protected data */
82  //@{
83  /// weight value for LP rows.
85  /// weight value for LP columns.
87  /// set variable to rhs?.
89  /// set primal variable to upper bound.
91  //@}
92 
93  //-----------------------------------
94  /**@name Protected helpers */
95  //@{
96  /// sets up variable weights.
97  /** This method is called in order to setup the weights for all
98  variables. It has been declared \c virtual in order to allow for
99  derived classes to compute other weight values.
100  */
101  virtual void setupWeights(SPxSolver& base);
102  //@}
103 
104 public:
105 
106  //-----------------------------------
107  /**@name Construction / destruction */
108  //@{
109  /// default constructor.
111  : SPxStarter("Weight")
112  {
113  assert(isConsistent());
114  }
115  /// copy constructor
117  : SPxStarter(old)
118  , forbidden(old.forbidden)
119  , rowWeight(old.rowWeight)
120  , colWeight(old.colWeight)
121  , rowRight(old.rowRight)
122  , colUp(old.colUp)
123  {
124  if (old.weight == &old.colWeight)
125  {
126  weight = &colWeight;
127  coWeight = &rowWeight;
128  }
129  else if (old.weight == &old.rowWeight)
130  {
131  weight = &rowWeight;
132  coWeight = &colWeight;
133  }
134  else // old.weight and old.coWeight are not set correctly, do nothing.
135  {}
136 
137  assert(isConsistent());
138  }
139  /// assignment operator
141  {
142  if(this != &rhs)
143  {
145  forbidden = rhs.forbidden;
146  rowWeight = rhs.rowWeight;
147  colWeight = rhs.colWeight;
148  rowRight = rhs.rowRight;
149  colUp = rhs.colUp;
150 
151  if (rhs.weight == &rhs.colWeight)
152  {
153  weight = &colWeight;
154  coWeight = &rowWeight;
155  }
156  else if (rhs.weight == &rhs.rowWeight)
157  {
158  weight = &rowWeight;
159  coWeight = &colWeight;
160  }
161  else // old.weight and old.coWeight are not set correctly, do nothing.
162  {}
163 
164  assert(isConsistent());
165  }
166 
167  return *this;
168  }
169  /// destructor.
170  virtual ~SPxWeightST()
171  {
172  weight = 0;
173  coWeight = 0;
174  }
175  /// clone function for polymorphism
176  inline virtual SPxStarter* clone() const
177  {
178  return new SPxWeightST(*this);
179  }
180  //@}
181 
182  //-----------------------------------
183  /**@name Generation of a start basis */
184  //@{
185  /// generates start basis for loaded basis.
186  void generate(SPxSolver& base);
187  //@}
188 
189  //-----------------------------------
190  /**@name Debugging */
191  //@{
192  /// consistency check.
193  virtual bool isConsistent() const;
194  //@}
195 
196 };
197 
198 } // namespace soplex
199 #endif // _SPXWEIGHTST_H_
200 
201 //-----------------------------------------------------------------------------
202 //Emacs Local Variables:
203 //Emacs mode:c++
204 //Emacs c-basic-offset:3
205 //Emacs tab-width:8
206 //Emacs indent-tabs-mode:nil
207 //Emacs End:
208 //-----------------------------------------------------------------------------