From cc62be3e1ea6d8745b8b0fbb3d7893e3d2d686dd Mon Sep 17 00:00:00 2001 From: canape Date: Thu, 6 Mar 2008 10:25:42 +0000 Subject: [PATCH] git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1084 331e1502-861f-0410-8da2-ba01fb791d7f --- trunk/paradiseo-peo/src/peoMoeoPopEval.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/trunk/paradiseo-peo/src/peoMoeoPopEval.h b/trunk/paradiseo-peo/src/peoMoeoPopEval.h index 88af7eac8..a1d03783b 100644 --- a/trunk/paradiseo-peo/src/peoMoeoPopEval.h +++ b/trunk/paradiseo-peo/src/peoMoeoPopEval.h @@ -171,7 +171,6 @@ template< class EOT > void peoMoeoPopEval< EOT >::operator()(eoPop< EOT >& __pop template< class EOT > void peoMoeoPopEval< EOT > :: packData() { - // printDebugMessage ("debut pakc data"); pack( progression[ tasks.front() ].first-- ); /* Packing the contents :-) of the solution */ @@ -203,10 +202,7 @@ template< class EOT > void peoMoeoPopEval< EOT > :: execute() template< class EOT > void peoMoeoPopEval< EOT > :: packResult() { -// std::cout<<"\nD"; /* Packing the fitness of the solution */ - /* typedef typename PO < F >::Fitness Fitness; - MOEOObjectiveVector ObjectiveVector;*/ std::vector < double > object; unsigned len; object=sol.objectiveVector(); @@ -215,21 +211,14 @@ template< class EOT > void peoMoeoPopEval< EOT > :: packResult() for (unsigned i = 0 ; i < len; i ++) pack (object[i]); - - -// pack( sol.fitness() ); /* Packing the @ of the individual */ pack( ad_sol ); -// std::cout<<"\nF"; } template< class EOT > void peoMoeoPopEval< EOT > :: unpackResult() { -// typename EOT :: Fitness fit; - /* Unpacking the computed fitness */ -// unpack( fit ); unsigned len; std::vector < double > object; @@ -242,7 +231,6 @@ template< class EOT > void peoMoeoPopEval< EOT > :: unpackResult() /* Associating the fitness the local solution */ -// merge_eval( *ad_sol, object ); ad_sol->objectiveVector(object); progression[ ad_sol ].second--;