SoPlex Doxygen Documentation
vector_exact.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 Roland Wunderling */
7 /* 1996-2012 Konrad-Zuse-Zentrum */
8 /* fuer Informationstechnik Berlin */
9 /* */
10 /* SoPlex is distributed under the terms of the ZIB Academic Licence. */
11 /* */
12 /* You should have received a copy of the ZIB Academic License */
13 /* along with SoPlex; see the file COPYING. If not email to soplex@zib.de. */
14 /* */
15 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
16 
17 #include <iostream>
18 
19 #include "spxdefines.h"
20 #include "vector_exact.h"
21 #include "vector.h"
22 #include "svector.h"
23 
24 namespace soplex
25 {
27 {
28  if (this != &vec)
29  {
30  assert(dim() == vec.dim());
31 
32  for( int i = 0; i < dimen; i++ )
33  {
34  val[i] = vec[i];
35  }
36 
37  assert(isConsistent());
38  }
39 
40  return *this;
41 }
42 
43 bool operator==(const Vector_exact& vec1, const Vector_exact& vec2)
44 {
45  if( &vec1 == &vec2 )
46  return true;
47  else if( vec1.dim() != vec2.dim() )
48  return false;
49  else
50  {
51  for( int i = 0; i < vec1.dim(); i++ )
52  {
53  if( vec1[i] != vec2[i] )
54  return false;
55  }
56  }
57 
58  return true;
59 }
60 
62 {
63  assert(dim() == vec.dim());
64 
65  for( int i = 0; i < dimen; i++ )
66  {
67  val[i] = vec[i];
68  }
69 
70  assert(isConsistent());
71 
72  return *this;
73 }
74 
76 {
77  clear();
78 
79  for( int i = 0; i < psv.size(); i++ )
80  {
81  assert(psv.index(i) < dim());
82  val[psv.index(i)] = psv.value(i);
83  }
84 
85  assert(isConsistent());
86 
87  return *this;
88 }
89 
91 {
92  assert(dim() == vec.dim());
93 
94  for( int i = 0; i < dimen; i++ )
95  {
96  val[i] += vec[i];
97  }
98 
99  return *this;
100 }
101 
103 {
104  assert(dim() == vec.dim());
105 
106  for( int i = 0; i < dim(); i++ )
107  {
108  val[i] += vec[i];
109  }
110 
111  return *this;
112 }
113 
115 {
116  for( int i = 0; i < vec.size(); i++ )
117  {
118  assert(vec.index(i) >= 0);
119  assert(vec.index(i) < dim());
120  val[vec.index(i)] += vec.value(i);
121  }
122 
123  return *this;
124 }
125 
126 /* stopped here */
127 
129 {
130  assert(dim() == vec.dim());
131 
132  for( int i = 0; i < dim(); i++ )
133  {
134  val[i] -= vec[i];
135  }
136 
137  return *this;
138 }
139 
141 {
142  assert(dim() == vec.dim());
143 
144  for( int i = 0; i < dim(); i++ )
145  {
146  val[i] -= vec[i];
147  }
148 
149  return *this;
150 }
151 
153 {
154  for( int i = 0; i < vec.size() ; i++ )
155  {
156  assert(vec.index(i) >= 0);
157  assert(vec.index(i) < dim());
158  val[vec.index(i)] -= vec.value(i);
159  }
160 
161  return *this;
162 }
163 
165 {
166  for( int i = 0; i < dim(); i++ )
167  {
168  val[i] *= x;
169  }
170 
171  return *this;
172 }
173 
175 {
176  MpqReal maxi = 0.0;
177 
178  for( int i = 0; i < dim(); i++ )
179  {
180  MpqReal x = abs(val[i]);
181 
182  if( x > maxi )
183  maxi = x;
184  }
185 
186  assert(maxi >= 0.0);
187 
188  return maxi;
189 }
190 
192 {
193  assert(dim() > 0);
194 
195  MpqReal mini = abs(val[0]);
196 
197  for( int i = 1; i < dim(); i++ )
198  {
199  MpqReal x = abs(val[i]);
200 
201  if( x < mini )
202  mini = x;
203  }
204 
205  assert(mini >= 0.0);
206 
207  return mini;
208 }
209 
211 {
212  assert(vec.dim() == dimen);
213 
214  for( int i = 0; i < dimen; i++ )
215  val[i] += x * vec.val[i];
216 
217  return *this;
218 }
219 
221 {
222  for( int i = 0; i < vec.size(); i++ )
223  {
224  assert(vec.index(i) < dim());
225  val[vec.index(i)] += x * vec.value(i);
226  }
227 
228  return *this;
229 }
230 
231 std::ostream& operator<<(std::ostream& s, const Vector_exact& vec)
232 {
233  int i;
234  s << '(';
235  for (i = 0; i < vec.dim() - 1; ++i)
236  s << vec[i] << ", ";
237  s << vec[i] << ')';
238  return s;
239 }
240 
242 {
243 #ifdef ENABLE_CONSISTENCY_CHECKS
244  if (dim() > 0 && val == 0)
245  return MSGinconsistent("Vector_exact");
246 #endif
247 
248  return true;
249 }
250 } // namespace soplex
251 
252 //-----------------------------------------------------------------------------
253 //Emacs Local Variables:
254 //Emacs mode:c++
255 //Emacs c-basic-offset:3
256 //Emacs tab-width:8
257 //Emacs indent-tabs-mode:nil
258 //Emacs End:
259 //-----------------------------------------------------------------------------