From b46be393fb7c6cf0ea8c060592a54787976c9efb Mon Sep 17 00:00:00 2001 From: liefooga Date: Wed, 18 Jan 2012 15:56:07 +0000 Subject: [PATCH] added std in moBitsWithoutReplNeighborhood git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2659 331e1502-861f-0410-8da2-ba01fb791d7f --- .../src/problems/bitString/moBitsWithoutReplNeighborhood.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trunk/paradiseo-mo/src/problems/bitString/moBitsWithoutReplNeighborhood.h b/trunk/paradiseo-mo/src/problems/bitString/moBitsWithoutReplNeighborhood.h index c07bc451c..652e8ed02 100644 --- a/trunk/paradiseo-mo/src/problems/bitString/moBitsWithoutReplNeighborhood.h +++ b/trunk/paradiseo-mo/src/problems/bitString/moBitsWithoutReplNeighborhood.h @@ -94,7 +94,7 @@ public: firstIndex = 1; for(int d = firstIndex; d <= nBits; d++) { - vector bits(d); + std::vector 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 > neighborsVec; + std::vector< std::vector > neighborsVec; // key of the neighbor which is currently explored unsigned int key;