wrong file replaced with the right version

This commit is contained in:
LPTK 2013-06-13 14:16:07 +02:00
commit 716abe4610
3 changed files with 119 additions and 4 deletions

View file

@ -1,24 +0,0 @@
//-----------------------------------------------------------------------------
// t-moFitnessNeighborStat.cpp
//-----------------------------------------------------------------------------
#include <eo>
//#include "eoReal.h"
#include "continuator/moStdFitnessNeighborStat.h"
#include "neighborhood/moRealNeighbor.h"
#include "neighborhood/moRealNeighborhood.h"
//-----------------------------------------------------------------------------
typedef eoReal< eoMinimizingFitness > EOT;
typedef moRealNeighbor< EOT > Neighbor;
int main(int ac, char** av)
{
moNeighborhoodStat<Neighbor> nhStat
moStdFitnessNeighborStat<Neighbor> stat(nhStat);
EOT solution(2, 5);
stat(solution);
//assert(stat.value() == 1);
std::cout << "ok " << stat.value() << endl;
}