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:
parent
767073a51d
commit
b46be393fb
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue