added std in moBitsWithoutReplNeighborhood

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2659 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
liefooga 2012-01-18 15:56:07 +00:00
commit b46be393fb

View file

@ -94,7 +94,7 @@ public:
firstIndex = 1;
for(int d = firstIndex; d <= nBits; d++) {
vector<unsigned int> bits(d);
std::vector<unsigned int> bits(d);
// the first one for this Hamming distance
for(unsigned i = 0; i < d; i++)
@ -207,7 +207,7 @@ protected:
unsigned int sampleSize;
// list of neighbors
vector< vector<unsigned int> > neighborsVec;
std::vector< std::vector<unsigned int> > neighborsVec;
// key of the neighbor which is currently explored
unsigned int key;