SoPlex Doxygen Documentation
dvector.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 
17 #include "spxdefines.h"
18 #include "dvector.h"
19 #include "vector_exact.h"
20 #include "spxalloc.h"
21 
22 namespace soplex
23 {
24 
25 DVector operator+(const Vector& v, const Vector& w)
26 {
27  assert(v.dim() == w.dim());
28  DVector res(v.dim());
29  for (int i = 0; i < res.dim(); ++i)
30  res[i] = v[i] + w[i];
31  return res;
32 }
33 
34 DVector operator+(const Vector& v, const SVector& w)
35 {
36  DVector res(v);
37  res += w;
38  return res;
39 }
40 
42 {
43  DVector res(vec.dim());
44  for (int i = 0; i < res.dim(); ++i)
45  res[i] = -vec[i];
46  return res;
47 }
48 
49 DVector operator-(const Vector& v, const Vector& w)
50 {
51  assert(v.dim() == w.dim());
52  DVector res(v.dim());
53  for (int i = 0; i < res.dim(); ++i)
54  res[i] = v[i] - w[i];
55  return res;
56 }
57 
58 DVector operator-(const Vector& v, const SVector& w)
59 {
60  DVector res(v);
61  res -= w;
62  return res;
63 }
64 
65 DVector operator-(const SVector& v, const Vector& w)
66 {
67  DVector res(-w);
68  res += v;
69  return res;
70 }
71 
73 {
74  DVector res(v.dim());
75  for (int i = 0; i < res.dim(); ++i)
76  res[i] = x * v[i];
77  return res;
78 }
79 
80 void DVector::reSize(int newsize)
81 {
82  assert(newsize >= dim());
83 
84  spx_realloc(mem, newsize);
85 
86  val = mem;
87  memsize = newsize;
88 }
89 
90 void DVector::reSize(int newsize, int newdim)
91 {
92  assert(newsize >= newdim);
93 
94  spx_realloc(mem, newsize);
95 
96  val = mem;
97  memsize = newsize;
98  dimen = newdim;
99 }
100 
101 void DVector::reDim(int newdim)
102 {
103  assert(memsize >= 0);
104 
105  if ( newdim > memsize )
106  reSize(int(newdim + 0.2 * memsize));
107  // Seems lint is wrong here. Replace with memset anyway.
108  for (int i = dimen; i < newdim; i++)
109  mem[i] = 0;
110  dimen = newdim;
111 }
112 
113 std::istream& operator>>(std::istream& s, DVector& vec)
114 {
115  char c;
116  Real val;
117  int i = 0;
118 
119  while (s.get(c).good())
120  if (c != ' ' && c != '\t' && c != '\n')
121  break;
122 
123  if (c != '(')
124  s.putback(c);
125  else
126  {
127  do
128  {
129  s >> val;
130  if (i >= vec.dim() - 1)
131  vec.reDim(i + 16);
132  vec[i++] = val;
133  while (s.get(c).good())
134  if (c != ' ' && c != '\t' && c != '\n')
135  break;
136  if (c != ',')
137  {
138  if (c != ')')
139  s.putback(c);
140  break;
141  }
142  }
143  while (s.good());
144  }
145 
146  vec.reDim(i);
147  return s;
148 }
149 
151  : Vector(0, 0)
152  , mem( 0 )
153 {
154  dimen = old.dim();
155  memsize = dimen;
157  val = mem;
158  *this = old;
159 
160  assert(DVector::isConsistent());
161 }
162 
164  : Vector(0, 0)
165  , mem( 0 )
166 {
167  dimen = old.dim();
168  memsize = dimen;
170  val = mem;
171 
172  Vector::operator=(old);
173 
174  assert(DVector::isConsistent());
175 }
176 
178  : Vector(0, 0)
179  , mem( 0 )
180 {
181  dimen = old.dim();
182  memsize = old.memsize;
184  val = mem;
185  *this = old;
186 
187  assert(DVector::isConsistent());
188 }
189 
191  : Vector(0, 0)
192  , mem( 0 )
193 {
194  memsize = (p_dim > 0) ? p_dim : 4;
196  val = mem;
197  dimen = p_dim;
198  /*
199  for(int i = 0; i < memsize; ++i)
200  mem[i] = 0;
201  */
202 
203  assert(DVector::isConsistent());
204 }
205 
207 {
208  if(mem != 0)
209  spx_free(mem);
210 }
211 
213 {
214 #ifdef ENABLE_CONSISTENCY_CHECKS
215  if (val != mem || dimen > memsize || dimen < 0)
216  return MSGinconsistent("DVector");
217 
218  return Vector::isConsistent();
219 #else
220  return true;
221 #endif
222 }
223 } // namespace soplex
224 
225 //-----------------------------------------------------------------------------
226 //Emacs Local Variables:
227 //Emacs mode:c++
228 //Emacs c-basic-offset:3
229 //Emacs tab-width:8
230 //Emacs indent-tabs-mode:nil
231 //Emacs End:
232 //-----------------------------------------------------------------------------