SoPlex Doxygen Documentation
spxvectorst.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 "spxvectorst.h"
23 
24 namespace soplex
25 {
26 
28 {
29  if (state == PVEC)
30  {
31  if (vec.dim() != base.nCols())
32  {
34  return;
35  }
36 
37  const Vector& obj = base.maxObj();
38  Real eps = base.epsilon();
39  Real bias = 10000 * eps;
40  Real x, y;
41  int i;
42 
43  MSG_DEBUG( spxout << "DVECST01 colWeight[]: "; )
44  for (i = base.nCols(); i--;)
45  {
46  x = vec[i] - base.SPxLP::lower(i);
47  y = base.SPxLP::upper(i) - vec[i];
48  if (x < y)
49  {
50  colWeight[i] = -x - bias * obj[i];
51  colUp[i] = 0;
52  }
53  else
54  {
55  colWeight[i] = -y + bias * obj[i];
56  colUp[i] = 1;
57  }
58  MSG_DEBUG( spxout << colWeight[i] << " "; )
59  }
60  MSG_DEBUG( spxout << std::endl << std::endl; )
61 
62  MSG_DEBUG( spxout << "DVECST02 rowWeight[]: "; )
63  for (i = base.nRows(); i--;)
64  {
65  const SVector& row = base.rowVector(i);
66  y = vec * row;
67  x = (y - base.lhs(i));
68  y = (base.rhs(i) - y);
69  if (x < y)
70  {
71  rowWeight[i] = -x - eps * row.size() - bias * (obj * row);
72  rowRight[i] = 0;
73  }
74  else
75  {
76  rowWeight[i] = -y - eps * row.size() + bias * (obj * row);
77  rowRight[i] = 1;
78  }
79  MSG_DEBUG( spxout << rowWeight[i] << " "; )
80  }
81  MSG_DEBUG( spxout << std::endl; )
82  }
83 
84  else if (state == DVEC)
85  {
86  if (vec.dim() != base.nRows())
87  {
89  return;
90  }
91 
92  Real x, y, len;
93  int i, j;
94  for (i = base.nRows(); i--;)
95  rowWeight[i] += fabs(vec[i]);
96 
97  for (i = base.nCols(); i--;)
98  {
99  const SVector& col = base.colVector(i);
100  for (y = len = 0, j = col.size(); j--;)
101  {
102  x = col.value(j);
103  y += vec[col.index(j)] * x;
104  len += x * x;
105  }
106  if (len > 0)
107  colWeight[i] += fabs(y / len - base.maxObj(i));
108  }
109  }
110  else
112 }
113 } // namespace soplex
114 
115 //-----------------------------------------------------------------------------
116 //Emacs Local Variables:
117 //Emacs mode:c++
118 //Emacs c-basic-offset:3
119 //Emacs tab-width:8
120 //Emacs indent-tabs-mode:nil
121 //Emacs End:
122 //-----------------------------------------------------------------------------