rien de spécial

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1645 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
jhumeau 2010-01-15 14:29:50 +00:00
commit 2a4909cbdf

View file

@ -19,14 +19,13 @@ public:
// copy constructeur
moNeighbor(const moNeighbor<EOType, Fitness> & _n) {
repFitness = _n.fitness();
repFitness = _n.fitness();
}
// assignment operator
virtual moNeighbor<EOType, Fitness> & operator=(const moNeighbor<EOType, Fitness> & _n) {
repFitness = _n.fitness();
return *this ;
repFitness = _n.fitness();
return *this ;
}
/*