SoPlex Doxygen Documentation
lpcolset.cpp
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 #include <assert.h>
17 
18 #include "spxdefines.h"
19 #include "lpcolset.h"
20 
21 namespace soplex
22 {
23 
25  DataKey& p_key,
26  Real p_obj,
27  Real p_lower,
28  const SVector& p_colVector,
29  Real p_upper)
30 {
31  SVSet::add(p_key, p_colVector);
32  if (num() > low.dim())
33  {
34  low.reDim (num());
35  up.reDim (num());
36  object.reDim (num());
37  }
38  low [num() - 1] = p_lower;
39  up [num() - 1] = p_upper;
40  object[num() - 1] = p_obj;
41 }
42 
43 void LPColSet::add(const LPColSet& p_set)
44 {
45  int i = num();
46 
47  SVSet::add(p_set);
48  if (num() > low.dim())
49  {
50  low.reDim (num());
51  up.reDim (num());
52  object.reDim (num());
53  }
54 
55  for (int j = 0; i < num(); ++i, ++j)
56  {
57  low [i] = p_set.lower(j);
58  up [i] = p_set.upper(j);
59  object[i] = p_set.maxObj(j);
60  }
61 }
62 
63 void LPColSet::add(DataKey nkey[], const LPColSet& p_set)
64 {
65  int i = num();
66  add(p_set);
67 
68  for (int j = 0; i < num(); ++i, ++j)
69  nkey[j] = key(i);
70 }
71 
72 SVector& LPColSet::create(DataKey& nkey, int nonzeros, Real p_obj, Real lhs, Real rhs)
73 {
74  if (num() + 1 > low.dim())
75  {
76  low.reDim (num() + 1);
77  up.reDim (num() + 1);
78  object.reDim (num() + 1);
79  }
80  low [num()] = lhs;
81  up [num()] = rhs;
82  object[num()] = p_obj;
83 
84  return *SVSet::create(nkey, nonzeros);
85 }
86 
87 
88 /* \SubSection{Shrinking}
89  */
90 void LPColSet::remove(int i)
91 {
92  SVSet::remove(i);
93  low[i] = low[num()];
94  up[i] = up[num()];
95  object[i] = object[num()];
96  low.reDim (num());
97  up.reDim (num());
98  object.reDim(num());
99 }
100 
101 void LPColSet::remove(int perm[])
102 {
103  int i;
104  int j = num();
105  SVSet::remove(perm);
106  for (i = 0; i < j; ++i)
107  {
108  if (perm[i] >= 0 && perm[i] != i)
109  {
110  low[perm[i]] = low[i];
111  up[perm[i]] = up[i];
112  object[perm[i]] = object[i];
113  }
114  }
115  low.reDim (num());
116  up.reDim (num());
117  object.reDim(num());
118 }
119 
120 void LPColSet::remove(const int nums[], int n, int* perm)
121 {
122  SVSet::remove(nums, n, perm);
123  int i;
124  int j = num();
125  for (i = 0; i < j; ++i)
126  {
127  if (perm[i] >= 0 && perm[i] != i)
128  {
129  low[perm[i]] = low[i];
130  up[perm[i]] = up[i];
131  object[perm[i]] = object[i];
132  }
133  }
134  low.reDim (num());
135  up.reDim (num());
136  object.reDim(num());
137 }
138 
140 {
141  SVSet::clear();
142  low.reDim (num());
143  up.reDim (num());
144  object.reDim(num());
145 }
146 
148 {
149 #ifdef ENABLE_CONSISTENCY_CHECKS
150  if (low.dim() != object.dim())
151  return MSGinconsistent("LPColSet");
152  if (low.dim() != up.dim())
153  return MSGinconsistent("LPColSet");
154  if (low.dim() != num())
155  return MSGinconsistent("LPColSet");
156 
158 #else
159  return true;
160 #endif
161 }
162 } // namespace soplex
163 
164 //-----------------------------------------------------------------------------
165 //Emacs Local Variables:
166 //Emacs mode:c++
167 //Emacs c-basic-offset:3
168 //Emacs tab-width:8
169 //Emacs indent-tabs-mode:nil
170 //Emacs End:
171 //-----------------------------------------------------------------------------