SoPlex Doxygen Documentation
spxdantzigpr.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 #include <iostream>
18 
19 // #define EQ_PREF 1000
20 
21 #include "spxdefines.h"
22 #include "spxdantzigpr.h"
23 
24 namespace soplex
25 {
26 
28 {
29  assert(thesolver != 0);
30 
31 #ifdef PARTIAL_PRICING
32  return selectLeavePart();
33 #endif
35  return selectLeaveSparse();
36 
37  // const Real* up = thesolver->ubBound();
38  // const Real* low = thesolver->lbBound();
39 
40  Real best = -theeps;
41  int n = -1;
42 
43  for(int i = thesolver->dim() - 1; i >= 0; --i)
44  {
45  Real x = thesolver->fTest()[i];
46 
47  if (x < -theeps)
48  {
49  // x *= EQ_PREF * (1 + (up[i] == low[i]));
50  if (x < best)
51  {
52  n = i;
53  best = x;
54  }
55  }
56  }
57  return n;
58 }
59 
61 {
62  assert(thesolver != 0);
63  Real best = -theeps;
64  Real x;
65  int n = -1;
66  int dim = thesolver->dim();
67  int count = 0;
68  int oldstart = start;
69 
70  for(int i = oldstart; i < dim; ++i)
71  {
72  x = thesolver->fTest()[i];
73  if (x < -theeps)
74  {
75  if (x < best)
76  {
77  if( count == 0 )
78  start = (i + 1) % dim;
79  n = i;
80  best = x;
81  ++count;
82  if (count >= MAX_PRICING_CANDIDATES)
83  return n;
84  }
85  }
86  }
87  for(int i = 0; i < oldstart; ++i)
88  {
89  x = thesolver->fTest()[i];
90  if (x < -theeps)
91  {
92  if (x < best)
93  {
94  if( count == 0 )
95  start = (i + 1) % dim;
96  n = i;
97  best = x;
98  ++count;
99  if (count >= MAX_PRICING_CANDIDATES)
100  return n;
101  }
102  }
103  }
104  return n;
105 }
106 
108 {
109  assert(thesolver != 0);
110 
111  Real best = -theeps;
112  Real x;
113  int n = -1;
114  int index;
115 
116  for(int i = thesolver->infeasibilities.size() - 1; i >= 0; --i)
117  {
118  index = thesolver->infeasibilities.index(i);
119  x = thesolver->fTest()[index];
120  if (x < -theeps)
121  {
122  if (x < best)
123  {
124  n = index;
125  best = x;
126  }
127  }
128  else
129  {
131  assert(thesolver->isInfeasible[index]);
132  thesolver->isInfeasible[index] = false;
133  }
134  }
135  return n;
136 }
137 
138 
140 {
141  assert(thesolver != 0);
142 
143  // const SPxBasis::Desc& ds = thesolver->basis().desc();
144 
145  SPxId enterId;
146  enterId = selectEnterX();
147 
148  return enterId;
149 }
150 
152 {
153  SPxId enterId;
154  SPxId enterIdCo;
155  Real best;
156  Real bestCo;
157 
158  best = -theeps;
159  bestCo = -theeps;
160  enterId = (thesolver->sparsePricingEnter) ? selectEnterSparseDim(best,enterId) : selectEnterDenseDim(best,enterId);
161  enterIdCo = (thesolver->sparsePricingEnterCo) ? selectEnterSparseCoDim(bestCo,enterId) : selectEnterDenseCoDim(bestCo,enterId);
162 
163  // prefer slack indices to reduce nonzeros in basis matrix
164  if( enterId.isValid() && (best > SPARSITY_TRADEOFF * bestCo || !enterIdCo.isValid()) )
165  return enterId;
166  else
167  return enterIdCo;
168 }
169 
170 
172 {
173  assert(thesolver != 0);
174 
175  int idx;
176  Real x;
177 
178  for (int i = thesolver->infeasibilities.size() - 1; i >= 0; --i)
179  {
180  idx = thesolver->infeasibilities.index(i);
181  x = thesolver->coTest()[idx];
182 
183  if (x < -theeps)
184  {
185  // x *= EQ_PREF * (1 + (ds.coStatus(i) == SPxBasis::Desc::P_FREE
186  // || ds.coStatus(i) == SPxBasis::Desc::D_FREE));
187  if (x < best)
188  {
189  enterId = thesolver->coId(idx);
190  best = x;
191  }
192  }
193  else
194  {
196 
197  assert(thesolver->isInfeasible[idx]);
198  thesolver->isInfeasible[idx] = false;
199  }
200  }
201  return enterId;
202 }
203 
205 {
206  assert(thesolver != 0);
207 
208  int idx;
209  Real x;
210 
211  for (int i = thesolver->infeasibilitiesCo.size() - 1; i >= 0; --i)
212  {
214  x = thesolver->test()[idx];
215 
216  if (x < -theeps)
217  {
218  // x *= EQ_PREF * (1 + (ds.coStatus(i) == SPxBasis::Desc::P_FREE
219  // || ds.coStatus(i) == SPxBasis::Desc::D_FREE));
220  if (x < best)
221  {
222  enterId = thesolver->id(idx);
223  best = x;
224  }
225  }
226  else
227  {
229 
230  assert(thesolver->isInfeasibleCo[idx]);
231  thesolver->isInfeasibleCo[idx] = false;
232  }
233  }
234  return enterId;
235 }
236 
238 {
239  assert(thesolver != 0);
240 
241  Real x;
242 
243  for (int i = thesolver->dim() - 1; i >= 0; --i)
244  {
245  x = thesolver->coTest()[i];
246 
247  if (x < -theeps)
248  {
249  // x *= EQ_PREF * (1 + (ds.coStatus(i) == SPxBasis::Desc::P_FREE
250  // || ds.coStatus(i) == SPxBasis::Desc::D_FREE));
251  if (x < best)
252  {
253  enterId = thesolver->coId(i);
254  best = x;
255  }
256  }
257  }
258  return enterId;
259 }
260 
262 {
263  assert(thesolver != 0);
264 
265  Real x;
266 
267  for (int i = thesolver->coDim() - 1; i >= 0; --i)
268  {
269  x = thesolver->test()[i];
270 
271  if (x < -theeps)
272  {
273  // x *= EQ_PREF * (1 + (ds.status(i) == SPxBasis::Desc::P_FREE
274  // || ds.status(i) == SPxBasis::Desc::D_FREE));
275  if (x < best)
276  {
277  enterId = thesolver->id(i);
278  best = x;
279  }
280  }
281  }
282  return enterId;
283 }
284 
285 } // namespace soplex
286 
287 //-----------------------------------------------------------------------------
288 //Emacs Local Variables:
289 //Emacs mode:c++
290 //Emacs c-basic-offset:3
291 //Emacs tab-width:8
292 //Emacs indent-tabs-mode:nil
293 //Emacs End:
294 //-----------------------------------------------------------------------------
295 
296 
297