Encore du nettoyage

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1814 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
jhumeau 2010-05-17 15:11:48 +00:00
commit 02e5cfb6c0
66 changed files with 987 additions and 1785 deletions

View file

@ -35,27 +35,27 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#include <acceptCrit/moBetterAcceptCrit.h>
#include "moTestClass.h"
int main(){
int main() {
std::cout << "[t-moBetterAcceptCrit] => START" << std::endl;
std::cout << "[t-moBetterAcceptCrit] => START" << std::endl;
bitVector sol1, sol2, sol3;
bitVector sol1, sol2, sol3;
sol1.fitness(2);
sol2.fitness(3);
sol3.fitness(3);
sol1.fitness(2);
sol2.fitness(3);
sol3.fitness(3);
moSolComparator<bitVector> comparator;
moSolComparator<bitVector> comparator;
moBetterAcceptCrit<bitNeighbor> test(comparator);
moBetterAcceptCrit<bitNeighbor> test(comparator);
assert(test(sol2, sol1));
assert(!test(sol1, sol2));
assert(!test(sol2, sol3));
assert(test(sol2, sol1));
assert(!test(sol1, sol2));
assert(!test(sol2, sol3));
std::cout << "[t-moBetterAcceptCrit] => OK" << std::endl;
std::cout << "[t-moBetterAcceptCrit] => OK" << std::endl;
return EXIT_SUCCESS;
return EXIT_SUCCESS;
}