git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@587 331e1502-861f-0410-8da2-ba01fb791d7f
22 lines
462 B
C++
22 lines
462 B
C++
// -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*-
|
|
|
|
// "route.h"
|
|
|
|
// (c) OPAC Team, LIFL, 2003-2007
|
|
|
|
/* LICENCE TEXT
|
|
|
|
Contact: paradiseo-help@lists.gforge.inria.fr
|
|
*/
|
|
|
|
#ifndef route_h
|
|
#define route_h
|
|
|
|
#include <eoVector.h>
|
|
#include <eoScalarFitness.h>
|
|
|
|
typedef eoScalarFitness< float, std::greater< float > > tspFitness ;
|
|
|
|
typedef eoVector <tspFitness, unsigned int> Route ; // [Fitness (length), Gene (city)]
|
|
|
|
#endif
|