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