Menu

[r164]: / trunk / include / dcovector- / dcovector-misc.hpp  Maximize  Restore  History

Download this file

150 lines (130 with data), 3.8 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
//=============================================================================
/*! clear vector */
inline void dcovector::clear()
{CPPL_VERBOSE_REPORT;
l =0;
cap =0;
delete [] array;
array =NULL;
}
//=============================================================================
/*! make vector into zero vector */
inline dcovector& dcovector::zero()
{CPPL_VERBOSE_REPORT;
for(long i=0; i<l; i++){ array[i] =0.0; }
return *this;
}
//=============================================================================
/*! change sign(+/-) of the vector */
inline void dcovector::chsign()
{CPPL_VERBOSE_REPORT;
for(long i=0; i<l; i++){ array[i] =-array[i]; }
}
//=============================================================================
/*! make a deep copy of the dcovector */
inline void dcovector::copy(const dcovector& vec)
{CPPL_VERBOSE_REPORT;
l =vec.l;
cap =vec.cap;
delete [] array;
array =new double[cap];
dcopy_(vec.l, vec.array, 1, array, 1);
}
//=============================================================================
/*! make a shallow copy of the vector\n
This function is not desinged to be used in project codes. */
inline void dcovector::shallow_copy(const _dcovector& vec)
{CPPL_VERBOSE_REPORT;
l =vec.l;
cap =vec.cap;
delete [] array;
array =vec.array;
vec.nullify();
}
//=============================================================================
/*! make an alias of the vector\n
Be carefull to use this function not to cause double free. */
inline void dcovector::alias(const dcovector& vec)
{CPPL_VERBOSE_REPORT;
l =vec.l;
cap =vec.cap;
delete [] array;
array =vec.array;
}
//=============================================================================
/*! unalias the vector */
inline void dcovector::unalias()
{CPPL_VERBOSE_REPORT;
l =0;
cap =0;
array =NULL;
}
//=============================================================================
/*! resize vector */
inline dcovector& dcovector::resize(const long& _l, const long margin)
{CPPL_VERBOSE_REPORT;
#ifdef CPPL_DEBUG
if( _l<0 ){
ERROR_REPORT;
std::cerr << "Vector size must be positive integers." << std::endl
<< "Your input was (" << _l << ", " << margin << ")." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
l =_l;
cap =l+margin;
delete [] array;
array =new double[cap];
return *this;
}
//=============================================================================
/*! stretch or shrink vector */
inline void dcovector::stretch(const long& dl)
{CPPL_VERBOSE_REPORT;
#ifdef CPPL_DEBUG
if( l+dl<0 ){
ERROR_REPORT;
std::cerr << "Vector size must be positive integers." << std::endl
<< "Your input was (" << dl << ")." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
//////// zero ////////
if(dl==0){ return; }
//////// non-zero ////////
l +=dl;
if(l>cap){
while(l>cap){
cap++;
cap*=2;
}
double* newArray(new double[cap]);
dcopy_(l-dl, array, 1, newArray, 1);
delete [] array;
array =newArray;
}
}
//=============================================================================
/*! swap two vectors */
inline void swap(dcovector& u, dcovector& v)
{CPPL_VERBOSE_REPORT;
long u_cap(u.cap), u_l(u.l);
double* u_array(u.array);
u.l=v.l; u.cap=v.cap; u.array=v.array;
v.l=u_l; v.cap=u_cap; v.array=u_array;
}
//=============================================================================
/*! convert user object to smart-temporary object */
inline _dcovector _(dcovector& vec)
{CPPL_VERBOSE_REPORT;
_dcovector newvec;
//////// shallow copy ////////
newvec.l =vec.l;
newvec.cap =vec.cap;
newvec.array =vec.array;
//////// nullify ////////
vec.l =0;
vec.cap =0;
vec.array =NULL;
return newvec;
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.