SoPlex Doxygen Documentation
vector.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 <iostream>
17 
18 #include "spxdefines.h"
19 #include "vector.h"
20 #include "vector_exact.h"
21 #include "ssvector.h"
22 #include "svector.h"
23 
24 namespace soplex
25 {
27 {
28  if (this != &vec)
29  {
30  assert(dim() == vec.dim());
31  memcpy(val, vec.val, dimen*sizeof(Real));
32 
33  assert(isConsistent());
34  }
35  return *this;
36 }
37 
39 {
40  clear();
41  assign(vec);
42 
43  assert(isConsistent());
44 
45  return *this;
46 }
47 
49 {
50  assert(dim() == vec.dim());
51 
52  for( int i = 0; i < dim(); i++ )
53  {
54  val[i] = get_d(vec[i]);
55  }
56 
57  assert(isConsistent());
58 
59  return *this;
60 }
61 
63 {
64  for (int i = psv.size(); i-- > 0;)
65  val[psv.index(i)] = psv.value(i);
66 
67  assert(isConsistent());
68 
69  return *this;
70 }
71 
73 {
74  assert(dim() == vec.dim());
75  for (int i = 0; i < dim(); ++i)
76  val[i] += vec[i];
77  return *this;
78 }
79 
81 {
82  for( int i = vec.size()-1; i >= 0 ; i-- )
83  {
84  assert(vec.index(i) >= 0);
85  assert(vec.index(i) < dim());
86  val[vec.index(i)] += vec.value(i);
87  }
88  return *this;
89 }
90 
92 {
93  for( int i = vec.size()-1; i >= 0 ; i-- )
94  {
95  assert(vec.index(i) >= 0);
96  assert(vec.index(i) < dim());
97  val[vec.index(i)] -= vec.value(i);
98  }
99  return *this;
100 }
101 
103 {
104  assert(dim() == vec.dim());
105  for (int i = 0; i < dim(); ++i)
106  val[i] -= vec[i];
107  return *this;
108 }
109 
111 {
112  for( int i = vec.size()-1; i >= 0 ; i-- )
113  {
114  assert(vec.index(i) >= 0);
115  assert(vec.index(i) < dim());
116  val[vec.index(i)] -= vec.value(i);
117  }
118  return *this;
119 }
120 
122 {
123  for( int i = vec.size()-1; i >= 0 ; i-- )
124  {
125  assert(vec.index(i) >= 0);
126  assert(vec.index(i) < dim());
127  val[vec.index(i)] -= vec.value(i);
128  }
129  return *this;
130 }
131 
133 {
134  for (int i = 0; i < dim(); ++i)
135  val[i] *= x;
136 
137  return *this;
138 }
139 
141 {
142  return sqrt(length2());
143 }
144 
146 {
147  return *this * *this;
148 }
149 
151 {
152  Real maxi = 0.0;
153 
154  for(int i = 0; i < dim(); ++i)
155  if (fabs(val[i]) > maxi)
156  maxi = fabs(val[i]);
157 
158  assert(maxi >= 0.0);
159 
160  return maxi;
161 }
162 
164 {
165  Real mini = infinity;
166 
167  for(int i = 0; i < dim(); ++i)
168  if (fabs(val[i]) < mini)
169  mini = fabs(val[i]);
170 
171  assert(mini >= 0.0);
172 
173  return mini;
174 }
175 
176 std::ostream& operator<<(std::ostream& s, const Vector& vec)
177 {
178  int i;
179  s << '(';
180  for (i = 0; i < vec.dim() - 1; ++i)
181  s << vec[i] << ", ";
182  s << vec[i] << ')';
183  return s;
184 }
185 
187 {
188  assert(dim() >= v.dim());
189  int i;
190  Real x = 0;
191  for (i = v.size(); i-- > 0;)
192  x += val[v.index(i)] * v.value(i);
193  return x;
194 }
195 
197 {
198 #ifdef ENABLE_CONSISTENCY_CHECKS
199  if (dim() > 0 && val == 0)
200  return MSGinconsistent("Vector");
201 #endif
202 
203  return true;
204 }
205 } // namespace soplex
206 
207 //-----------------------------------------------------------------------------
208 //Emacs Local Variables:
209 //Emacs mode:c++
210 //Emacs c-basic-offset:3
211 //Emacs tab-width:8
212 //Emacs indent-tabs-mode:nil
213 //Emacs End:
214 //-----------------------------------------------------------------------------