SoPlex Doxygen Documentation
lprowset.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 //#define DEBUGGING 1
17 
18 #include <assert.h>
19 #include <iostream>
20 
21 #include "spxdefines.h"
22 #include "lprowset.h"
23 #include "exceptions.h"
24 
25 namespace soplex
26 {
27 
28 void LPRowSet::add(DataKey& p_key, Real p_lhs, const SVector& vector, Real p_rhs)
29 {
30  SVSet::add(p_key, vector);
31  if (num() > left.dim())
32  {
33  left.reDim(num());
34  right.reDim(num());
35  }
36  left [num() - 1] = p_lhs;
37  right[num() - 1] = p_rhs;
38 }
39 
40 void LPRowSet::add(const LPRowSet& p_set)
41 {
42  int i = num();
43 
44  SVSet::add(p_set);
45  if (num() > left.dim())
46  {
47  left.reDim(num());
48  right.reDim(num());
49  }
50 
51  for (int j = 0; i < num(); ++i, ++j)
52  {
53  left [i] = p_set.lhs(j);
54  right[i] = p_set.rhs(j);
55  }
56 }
57 
58 void LPRowSet::add(DataKey nkey[], const LPRowSet& p_set)
59 {
60  int i = num();
61 
62  add(p_set);
63 
64  for (int j = 0; i < num(); ++i, ++j)
65  nkey[j] = key(i);
66 }
67 
68 SVector& LPRowSet::create(DataKey& nkey, int nonzeros, Real p_lhs, Real p_rhs)
69 {
70  if (num() + 1 > left.dim())
71  {
72  left.reDim(num() + 1);
73  right.reDim(num() + 1);
74  }
75  left [num()] = p_lhs;
76  right[num()] = p_rhs;
77 
78  return *SVSet::create(nkey, nonzeros);
79 }
80 
81 
82 /* \SubSection{Shrinking}
83  */
84 void LPRowSet::remove(int i)
85 {
86  SVSet::remove(i);
87  left[i] = left[num()];
88  right[i] = right[num()];
89  left.reDim (num());
90  right.reDim(num());
91 }
92 
93 void LPRowSet::remove(int perm[])
94 {
95  int i;
96  int j = num();
97  SVSet::remove(perm);
98  for (i = 0; i < j; ++i)
99  {
100  if (perm[i] >= 0 && perm[i] != i)
101  {
102  left[perm[i]] = left[i];
103  right[perm[i]] = right[i];
104  }
105  }
106  left.reDim (num());
107  right.reDim(num());
108 }
109 
110 void LPRowSet::remove(const int nums[], int n, int* perm)
111 {
112  SVSet::remove(nums, n, perm);
113  int i;
114  int j = num();
115  for (i = 0; i < j; ++i)
116  {
117  if (perm[i] >= 0 && perm[i] != i)
118  {
119  left[perm[i]] = left[i];
120  right[perm[i]] = right[i];
121  }
122  }
123  left.reDim (num());
124  right.reDim(num());
125 }
126 
128 {
129  SVSet::clear();
130  left.reDim (num());
131  right.reDim(num());
132 }
133 
134 // TK13OCT1998
136  int i,
137  LPRow::Type p_type)
138 {
139  switch (p_type)
140  {
141  case LPRow::LESS_EQUAL:
142  lhs_w(i) = -infinity;
143  break;
144  case LPRow::EQUAL:
145  if (lhs_w(i) > -infinity)
146  rhs_w(i) = lhs(i);
147  else
148  lhs_w(i) = rhs(i);
149  break;
151  rhs_w(i) = infinity;
152  break;
153  case LPRow::RANGE :
154  MSG_ERROR( spxout << "EROWST01 RANGE not supported in LPRowSet::setType()"
155  << std::endl; )
156  throw SPxInternalCodeException("XROWST01 This should never happen.");
157  default:
158  throw SPxInternalCodeException("XROWST02 This should never happen.");
159  }
160 }
161 
163 {
164 #ifdef ENABLE_CONSISTENCY_CHECKS
165  const int ldim = left.dim();
166  if (ldim != right.dim())
167  return MSGinconsistent("LPRowSet");
168  if (ldim != num())
169  return MSGinconsistent("LPRowSet");
170 
172 #else
173  return true;
174 #endif
175 }
176 } // namespace soplex
177 
178 //-----------------------------------------------------------------------------
179 //Emacs Local Variables:
180 //Emacs mode:c++
181 //Emacs c-basic-offset:3
182 //Emacs tab-width:8
183 //Emacs indent-tabs-mode:nil
184 //Emacs End:
185 //-----------------------------------------------------------------------------