SoPlex Doxygen Documentation
dsvector.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 #include "spxdefines.h"
20 #include "dsvector.h"
21 #include "spxalloc.h"
22 
23 namespace soplex
24 {
25 
26 //-----------------------------------------------------------
27 // Construction / destruction
28 //-----------------------------------------------------------
29 
31  : theelem( 0 )
32 {
33  allocMem((n < 1) ? 2 : n + 1);
34 
35  assert(DSVector::isConsistent());
36 }
37 
39 {
40  if(theelem)
42 }
43 
45  : theelem( 0 )
46 {
47  allocMem((vec.dim() < 1) ? 2 : vec.dim() + 1);
48  *this = vec;
49 
50  assert(DSVector::isConsistent());
51 }
52 
54  : theelem( 0 )
55 {
56  allocMem(old.size() + 1);
57  SVector::operator= ( old );
58 
59  assert(DSVector::isConsistent());
60 }
61 
63  : theelem( 0 )
64 {
65  allocMem(old.size() + 1);
66  SVector::operator= ( old );
67 
68  assert(DSVector::isConsistent());
69 }
70 
72  : SVector()
73  , theelem( 0 )
74 {
75  allocMem(old.size() + 1);
76  SVector::operator= ( old );
77 
78  assert(DSVector::isConsistent());
79 }
80 
82 {
83  clear();
84  setMax(vec.dim());
85  SVector::operator=(vec);
86 
87  assert(DSVector::isConsistent());
88 
89  return *this;
90 }
91 
92 //-----------------------------------------------------------
93 // memory stuff
94 //-----------------------------------------------------------
95 
96 void DSVector::allocMem(int len)
97 {
98  spx_alloc(theelem, len);
99  setMem(len, theelem);
100 }
101 
102 void DSVector::setMax(int newmax)
103 {
104  int siz = size();
105  int len = ((newmax < siz) ? siz : newmax) + 1;
106 
107  spx_realloc(theelem, len);
108  setMem (len, theelem);
109  set_size( siz );
110 }
111 
112 //-----------------------------------------------------------
113 // consistency check
114 //-----------------------------------------------------------
115 
117 {
118 #ifdef ENABLE_CONSISTENCY_CHECKS
119  if ((theelem != 0) && (mem() != theelem))
120  return MSGinconsistent("DSVector");
121 #endif
122 
123  return true;
124 }
125 } // namespace soplex
126 
127 //-----------------------------------------------------------------------------
128 //Emacs Local Variables:
129 //Emacs mode:c++
130 //Emacs c-basic-offset:3
131 //Emacs tab-width:8
132 //Emacs indent-tabs-mode:nil
133 //Emacs End:
134 //-----------------------------------------------------------------------------
135 
136