clear and update srcs with # change

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2640 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
boufaras 2012-01-12 10:31:27 +00:00
commit 0dfc55e53d
7 changed files with 47 additions and 43 deletions

View file

@ -42,11 +42,11 @@ using namespace std;
#include <eo>
#include <ga.h>
// OneMax full eval function
#include <problems/eval/EvalOneMax.h>
#include <problems/eval/moGPUEvalOneMax.h>
//Parallel evaluation of neighborhood on GPU
#include <eval/moGPUEvalByModif.h>
// OneMax increment evaluation function
#include <problems/eval/OneMaxIncrEval.h>
#include <problems/eval/moGPUOneMaxIncrEval.h>
// One Max solution
#include <GPUType/moGPUBitVector.h>
// Bit neighbor
@ -143,7 +143,7 @@ void main_function(int argc, char **argv)
*
* ========================================================= */
EvalOneMax<solution> eval;
moGPUEvalOneMax<solution> eval;
/* =========================================================
*
@ -151,8 +151,8 @@ void main_function(int argc, char **argv)
*
* ========================================================= */
OneMaxIncrEval<Neighbor> incr_eval;
moGPUEvalByModif<Neighbor,OneMaxIncrEval<Neighbor> > gpuEval(SIZE,incr_eval);
moGPUOneMaxIncrEval<Neighbor> incr_eval;
moGPUEvalByModif<Neighbor,moGPUOneMaxIncrEval<Neighbor> > gpuEval(SIZE,incr_eval);
/* =========================================================
*