SoPlex Doxygen Documentation
lprowset.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 lprowset.h
17  * @brief Set of LP columns.
18  */
19 #ifndef _LPROWSET_H_
20 #define _LPROWSET_H_
21 
22 
23 #include <assert.h>
24 
25 #include "spxdefines.h"
26 #include "lprow.h"
27 #include "dvector.h"
28 #include "svset.h"
29 #include "datakey.h"
30 
31 namespace soplex
32 {
33 /**@brief Set of LP rows.
34  @ingroup Algebra
35 
36  Class LPRowSet implements a set of \ref LPRow "LPRows". Unless for memory
37  limitations, any number of LPRows may be #add%ed to an LPRowSet. Single
38  or multiple LPRows may be added to an LPRowSet, where each method
39  add() comes with two different signatures. One with and one without a
40  parameter, used for returning the Keys assigned to the new LPRows
41  by the set. See DataKey for a more detailed description of the
42  concept of keys. For the concept of renumbering LPRows within an
43  LPRowSet after removal of some LPRows see DataSet.
44 
45  @see DataSet, DataKey
46 */
47 class LPRowSet : protected SVSet
48 {
49 private:
50 
51  //-----------------------------------
52  /**@name Data */
53  //@{
54  DVector left; ///< vector of left hand sides (lower bounds) of LPRows.
55  DVector right; ///< vector of right hand sides (upper bounds) of LPRows.
56  //@}
57 
58 protected:
59 
60  //-----------------------------------
61  /**@name Helpers */
62  //@{
63  /// return the complete SVSet.
64  const SVSet* rowSet() const
65  {
66  return this;
67  }
68  //@}
69 
70 public:
71 
72  //-----------------------------------
73  /**@name Access / modification */
74  //@{
75  /// returns the number of LPRows in LPRowSet.
76  int num() const
77  {
78  return SVSet::num();
79  }
80  /// returns the maximum number of LPRows that fit.
81  int max() const
82  {
83  return SVSet::max();
84  }
85  /// returns the vector of lhs values.
86  const Vector& lhs() const
87  {
88  return left;
89  }
90  /// returns the vector of lhs values.
92  {
93  return left;
94  }
95  /// returns the lhs of the \p i 'th LPRow.
96  Real lhs(int i) const
97  {
98  return left[i];
99  }
100  /// returns the lhs of the \p i 'th LPRow.
101  Real& lhs_w(int i)
102  {
103  return left[i];
104  }
105  /// returns the lhs of the LPRow with DataKey \p k in LPRowSet.
106  Real lhs(const DataKey& k) const
107  {
108  return left[number(k)];
109  }
110  /// returns the lhs of the LPRow with DataKey \p k in LPRowSet.
111  Real& lhs_w(const DataKey& k)
112  {
113  return left[number(k)];
114  }
115  /// returns the vector of rhs values.
116  const Vector& rhs() const
117  {
118  return right;
119  }
120  /// returns the vector of rhs values (writeable).
122  {
123  return right;
124  }
125  /// returns the rhs of the \p i 'th LPRow.
126  Real rhs(int i) const
127  {
128  return right[i];
129  }
130  /// returns the rhs of the \p i 'th LPRow (writeable).
131  Real& rhs_w(int i)
132  {
133  return right[i];
134  }
135  /// returns the rhs of the LPRow with DataKey \p k in LPRowSet.
136  Real rhs(const DataKey& k) const
137  {
138  return right[number(k)];
139  }
140  /// returns the rhs of the LPRow with DataKey \p k in LPRowSet (writeable).
141  Real& rhs_w(const DataKey& k)
142  {
143  return right[number(k)];
144  }
145  /// returns a writable rowVector of the \p i 'th LPRow.
147  {
148  return operator[](i);
149  }
150  /// returns the rowVector of the \p i 'th LPRow.
151  const SVector& rowVector(int i) const
152  {
153  return operator[](i);
154  }
155  /// returns a writable rowVector of the LPRow with DataKey \p k.
157  {
158  return operator[](k);
159  }
160  /// returns the rowVector of the LPRow with DataKey \p k.
161  const SVector& rowVector(const DataKey& k) const
162  {
163  return operator[](k);
164  }
165 
166  /// returns the inequalitiy type of the \p i 'th LPRow.
167  LPRow::Type type(int i) const
168  {
169  if (rhs(i) >= infinity)
170  return LPRow::GREATER_EQUAL;
171  if (lhs(i) <= -infinity)
172  return LPRow::LESS_EQUAL;
173  if (lhs(i) == rhs(i))
174  return LPRow::EQUAL;
175  return LPRow::RANGE;
176  }
177 
178  /// returns the inequality type of the LPRow with DataKey \p k.
179  LPRow::Type type(const DataKey& k) const
180  {
181  return type(number(k));
182  }
183 
184  /// changes the inequality type of row \p i to \p type.
185  void setType(int i, LPRow::Type type);
186 
187  /// returns the value of the \p i'th LPRow.
188  Real value(int i) const
189  {
190  if (rhs(i) < infinity)
191  return rhs(i);
192  else
193  {
194  assert(lhs(i) > -infinity);
195  return lhs(i);
196  }
197  }
198 
199  /// returns the value of the LPRow with DataKey \p k.
200  /** The \em value of a row depends on its type: if the inequality is of
201  type "greater or equal", the value is the lhs of the row. Otherwise,
202  the value is the rhs.
203  */
204  Real value(const DataKey& k) const
205  {
206  return value(number(k));
207  }
208 
209  /// returns the DataKey of the \p i 'th LPRow in LPRowSet.
210  DataKey key(int i) const
211  {
212  return SVSet::key(i);
213  }
214 
215  /// returns the number of the LPRow with DataKey \p k in LPRowSet.
216  int number(const DataKey& k) const
217  {
218  return SVSet::number(k);
219  }
220 
221  /// does DataKey \p k belong to LPRowSet ?
222  bool has(const DataKey& k) const
223  {
224  return SVSet::has(k);
225  }
226  //@}
227 
228 
229  //-----------------------------------
230  /**@name Extension
231  Extension methods come with two signatures, one of them providing a
232  parameter to return the assigned DataKey(s). See DataSet for a more
233  detailed description. All extension methods will automatically rearrange
234  or allocate more memory if required.
235  */
236  //@{
237  ///
238  void add(const LPRow& row)
239  {
240  DataKey k;
241  add(k, row);
242  }
243  /// adds \p row to LPRowSet.
244  void add(DataKey& pkey, const LPRow& prow)
245  {
246  add(pkey, prow.lhs(), prow.rowVector(), prow.rhs());
247  }
248 
249  /// adds LPRow consisting of left hand side \p lhs, row vector \p rowVector, and right hand side \p rhs to LPRowSet.
250  void add(Real plhs, const SVector& prowVector, Real prhs)
251  {
252  DataKey k;
253  add(k, plhs, prowVector, prhs);
254  }
255  /// adds LPRow consisting of left hand side \p lhs, row vector \p
256  /// rowVector, and right hand side \p rhs to LPRowSet, with DataKey
257  /// \p key.
258  void add(DataKey& key, Real lhs, const SVector& rowVector, Real rhs);
259 
260  ///
261  void add(const LPRowSet& set);
262  /// adds all LPRows of \p set to LPRowSet.
263  void add(DataKey key[], const LPRowSet& set);
264 
265  /// extends row \p n to fit \p newmax nonzeros.
266  void xtend(int n, int newmax)
267  {
268  SVSet::xtend(rowVector_w(n), newmax);
269  }
270 
271  /// extend row with DataKey \p key to fit \p newmax nonzeros.
272  void xtend(const DataKey& pkey, int pnewmax)
273  {
274  SVSet::xtend(rowVector_w(pkey), pnewmax);
275  }
276 
277  /// adds \p n nonzero (\p idx, \p val)-pairs to rowVector with DataKey \p k.
278  void add2(const DataKey& k, int n, const int idx[], const Real val[])
279  {
280  SVSet::add2(rowVector_w(k), n, idx, val);
281  }
282 
283  /// adds \p n nonzero (\p idx, \p val)-pairs to \p i 'th rowVector.
284  void add2(int i, int n, const int idx[], const Real val[])
285  {
286  SVSet::add2(rowVector_w(i), n, idx, val);
287  }
288 
289  /// creates new LPRow with specified parameters and returns a reference to its row vector.
290  SVector& create(int pnonzeros = 0, Real plhs = 0, Real prhs = 1)
291  {
292  DataKey k;
293  return create(k, pnonzeros, plhs, prhs);
294  }
295  /// creates new LPRow with specified parameters and returns a reference to its row vector.
296  SVector& create(DataKey& nkey, int nonzeros = 0, Real lhs = 0, Real rhs = 1);
297  //@}
298 
299 
300  //-----------------------------------
301  /**@name Shrinking
302  See DataSet for a description of the renumbering of the remaining
303  LPRows in a LPRowSet after the call of a removal method.
304  */
305  //@{
306  /// removes \p i 'th LPRow.
307  void remove(int i);
308  /// removes LPRow with DataKey \p k.
309  void remove(const DataKey& k)
310  {
311  remove(number(k));
312  }
313 
314 
315  /// removes multiple LPRows.
316  void remove(int perm[]);
317 
318  /// removes \p n LPRows with row numbers given by \p nums.
319  void remove(const int nums[], int n)
320  {
321  DataArray<int> perm(num());
322  remove(nums, n, perm.get_ptr());
323  }
324  /// removes \p n LPRows with row numbers given by \p nums,
325  /// Stores permutation of row indices in \p perm.
326  void remove(const int nums[], int n, int* perm);
327 
328  /// removes all LPRows.
329  void clear();
330  //@}
331 
332 
333  //-----------------------------------
334  /**@name Memory Management
335  For a description of the memory management methods, see the
336  documentation of SVSet, which has been used for implementating
337  LPRowSet.
338  */
339  //@{
340  /// reallocates memory to be able to store \p newmax LPRows.
341  void reMax(int newmax = 0)
342  {
343  SVSet::reMax(newmax);
344  left.reSize (max());
345  right.reSize(max());
346  }
347 
348  /// returns number of used nonzero entries.
349  int memSize() const
350  {
351  return SVSet::memSize();
352  }
353 
354  /// returns length of nonzero memory.
355  int memMax() const
356  {
357  return SVSet::memMax();
358  }
359 
360  /// reallocates memory to be able to store \p newmax nonzeros.
361  void memRemax(int newmax)
362  {
363  SVSet::memRemax(newmax);
364  }
365 
366  /// garbage collection in nonzero memory.
367  void memPack()
368  {
369  SVSet::memPack();
370  }
371  //@}
372 
373  //-----------------------------------
374  /**@name Consistency check */
375  /// check consistency.
376  bool isConsistent() const;
377  //@}
378 
379  //------------------------------------
380  /**@name Construction / Destruction */
381  //@{
382  /// default constructor.
383  /** The user can specify the initial maximum number of rows \p max
384  and the initial maximum number of nonzero entries \p memmax. If these
385  parameters are omitted, a default size is used. However, one can add
386  an arbitrary number of rows to the LPRowSet, which may result in
387  automated memory realllocation.
388  */
389  explicit
390  LPRowSet(int pmax = -1, int pmemmax = -1)
391  : SVSet(pmax, pmemmax), left(0), right(0)
392  {
393  assert(isConsistent());
394  }
395 
396  /// assignment operator.
398  {
399  if (this != &rs)
400  {
401  SVSet::operator=(rs);
402  left = rs.left;
403  right = rs.right;
404 
405  assert(isConsistent());
406  }
407  return *this;
408  }
409 
410  /// copy constructor.
411  LPRowSet(const LPRowSet& rs)
412  : SVSet( rs )
413  , left ( rs.left )
414  , right( rs.right )
415  {
416  assert(isConsistent());
417  }
418 
419  /// destructor
421  {}
422  //@}
423 
424 };
425 } // namespace soplex
426 #endif // _LPROWSET_H_
427 
428 //-----------------------------------------------------------------------------
429 //Emacs Local Variables:
430 //Emacs mode:c++
431 //Emacs c-basic-offset:3
432 //Emacs tab-width:8
433 //Emacs indent-tabs-mode:nil
434 //Emacs End:
435 //-----------------------------------------------------------------------------