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,31 +35,31 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#include "moTestClass.h"
#include <eval/oneMaxEval.h>
int main(){
int main() {
std::cout << "[t-moRandomSearchExplorer] => START" << std::endl;
std::cout << "[t-moRandomSearchExplorer] => START" << std::endl;
dummyInit init;
oneMaxEval<bitVector> eval;
bitVector sol(4, true);
dummyInit init;
oneMaxEval<bitVector> eval;
bitVector sol(4, true);
moRandomSearchExplorer<bitNeighbor> test(init, eval, 2);
moRandomSearchExplorer<bitNeighbor> test(init, eval, 2);
test.initParam(sol);
test(sol);
assert(sol.fitness()==4);
test.updateParam(sol);
assert(test.isContinue(sol));
test.updateParam(sol);
assert(!test.isContinue(sol));
test.initParam(sol);
assert(test.isContinue(sol));
test.terminate(sol);
assert(test.accept(sol));
test.move(sol);
test.initParam(sol);
test(sol);
assert(sol.fitness()==4);
test.updateParam(sol);
assert(test.isContinue(sol));
test.updateParam(sol);
assert(!test.isContinue(sol));
test.initParam(sol);
assert(test.isContinue(sol));
test.terminate(sol);
assert(test.accept(sol));
test.move(sol);
std::cout << "[t-moRandomSearchExplorer] => OK" << std::endl;
std::cout << "[t-moRandomSearchExplorer] => OK" << std::endl;
return EXIT_SUCCESS;
return EXIT_SUCCESS;
}