add asignement operator & update setSize method

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2368 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
boufaras 2011-09-14 13:15:26 +00:00
commit 6f594cb0c8

View file

@ -70,17 +70,6 @@ public:
create();
}
/**
*Assignment operator
*@param _vector The vector passed to the function to fix the new content.
*@return a new vector.
*/
moGPUIntVector& operator=(const moGPUIntVector & _vector) {
moGPUVector<int, Fitness>::operator=(_vector);
return (*this);
}
/**
*Initializer of random integer vector.
*/
@ -98,20 +87,19 @@ public:
virtual inline __host__ void setSize(unsigned _size) {
if(N==_size)
return;
moGPUIntVector<Fitness> tmp_vect(_size);
if(_size<N) {
moGPUIntVector<Fitness> tmp_vect(_size);
for (unsigned i = 0; i < tmp_vect.N; i++)
tmp_vect.vect[i]= vect[i];
(tmp_vect).invalidate();
(*this)=tmp_vect;
}
else if(_size>N) {
moGPUIntVector<Fitness> tmp_vect(_size);
for (unsigned i = 0; i <N; i++)
tmp_vect.vect[i]= vect[i];
(tmp_vect).invalidate();
(*this)=tmp_vect;
}
(tmp_vect).invalidate();
(*this)=tmp_vect;
}