New style for MO

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@787 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
canape 2007-11-16 11:25:54 +00:00
commit 7161febf9c
80 changed files with 2014 additions and 2038 deletions

View file

@ -44,8 +44,6 @@
moHC, moTS and moSA are 3 examples of algorithm of the paradiseo-mo library.
*/
template < class EOT > class moAlgo:public eoMonOp < EOT >
{
};
{};
#endif

View file

@ -44,7 +44,6 @@
*/
template<class EOT>
class moComparator: public eoBF<const EOT&, const EOT&, bool>
{
};
{};
#endif

View file

@ -45,8 +45,6 @@
See moExponentialCoolingSchedule or moLinearCoolingSchedule for example.
*/
class moCoolingSchedule:public eoUF < double &, bool >
{
};
{};
#endif

View file

@ -53,9 +53,7 @@ public:
\param __maxNumGen the maximum number of generation.
*/
moGenSolContinue (unsigned int __maxNumGen):maxNumGen (__maxNumGen), numGen (0)
{
}
{}
//! Function that activates the stop criterion.
/*!

View file

@ -77,9 +77,7 @@ public:
moHC (moMoveInit < M > &__move_init, moNextMove < M > &__next_move, moMoveIncrEval < M > &__incr_eval, moMoveSelect < M > &__move_select, eoEvalFunc < EOT > &__full_eval):move_expl (*new moHCMoveLoopExpl < M >
(__move_init, __next_move, __incr_eval, __move_select)),
full_eval (__full_eval)
{
}
{}
//! Light constructor.
/*!
@ -91,9 +89,7 @@ moHC (moMoveInit < M > &__move_init, moNextMove < M > &__next_move, moMoveIncrEv
moHC (moMoveExpl < M > &__move_expl, eoEvalFunc < EOT > &__full_eval):move_expl (__move_expl),
full_eval
(__full_eval)
{
}
{}
//! Function which launches the HC
/*!

View file

@ -70,9 +70,7 @@ moHCMoveLoopExpl (moMoveInit < M > &__move_init, moNextMove < M > &__next_move,
move_init (__move_init),
next_move (__next_move),
incr_eval (__incr_eval), move_select (__move_select)
{
}
{}
//! Procedure which launches the explorer.
/*!

View file

@ -62,9 +62,7 @@ public:
moItRandNextMove (moRandMove < M > &__rand_move,
unsigned int __max_iter):rand_move (__rand_move),
max_iter (__max_iter), num_iter (0)
{
}
{}
//! Generation of a new move
/*!

View file

@ -47,8 +47,6 @@ template < class M > class moMoveExpl:public eoBF < const typename
M::EOType &,
typename
M::EOType &, void >
{
};
{};
#endif

View file

@ -50,8 +50,6 @@ template < class M > class moMoveIncrEval:public eoBF < const M &, const typenam
M::EOType &,
typename
M::EOType::Fitness >
{
};
{};
#endif

View file

@ -46,8 +46,6 @@
*/
template < class M > class moMoveInit:public eoBF < M &, const typename
M::EOType &, void >
{
};
{};
#endif

View file

@ -44,8 +44,6 @@
Only a description... moHCMoveLoopExpl and moTSMoveLoopExpl are exemples of class that are a moMoveLoopExpl.
*/
template < class M > class moMoveLoopExpl:public moMoveExpl < M >
{
};
{};
#endif

View file

@ -44,9 +44,7 @@
This class is used as an exception that can be thrown if a solution selector has completly failed.
*/
class EmptySelection
{
};
{};
//! Class that describes a move selector (moMove).
/*!

View file

@ -47,8 +47,6 @@
template < class M > class moNextMove:public eoBF < M &, const typename
M::EOType &,
bool >
{
};
{};
#endif

View file

@ -66,8 +66,7 @@ template < class M > class moNoAspirCrit:public moAspirCrit < M >
Nothing...
*/
void init ()
{
}
{}
};
#endif

View file

@ -44,8 +44,6 @@
Only a description... An object that herits from this class needs to be designed in order to use a moSA.
*/
template < class M > class moRandMove:public eoUF < M &, void >
{
};
{};
#endif

View file

@ -91,9 +91,7 @@ public:
init_temp (__init_temp),
cool_sched (__cool_sched),
full_eval (__full_eval)
{
}
{}
//! function that launches the SA algorithm.
/*!

View file

@ -40,7 +40,8 @@
int
main (int __argc, char * __argv [])
{
if (__argc != 2) {
if (__argc != 2)
{
std :: cerr << "Usage : ./hill_climbing [instance]" << std :: endl ;
return 1 ;

View file

@ -38,7 +38,8 @@
#include "city_swap.h"
bool CitySwap :: operator () (Route & __route) {
bool CitySwap :: operator () (Route & __route)
{
std :: swap (__route [rng.random (__route.size ())],
__route [rng.random (__route.size ())]) ;

View file

@ -43,7 +43,8 @@
/** Its swaps two vertices
randomly choosen */
class CitySwap : public eoMonOp <Route> {
class CitySwap : public eoMonOp <Route>
{
public :

View file

@ -87,7 +87,8 @@ EdgeXover :: add_vertex (unsigned int __vertex, Route & __child)
}
void
EdgeXover :: cross (const Route & __par1, const Route & __par2, Route & __child) {
EdgeXover :: cross (const Route & __par1, const Route & __par2, Route & __child)
{
build_map (__par1, __par2) ;
@ -100,7 +101,8 @@ EdgeXover :: cross (const Route & __par1, const Route & __par2, Route & __child)
add_vertex (cur_vertex, __child) ;
for (unsigned int i = 1 ; i < len ; i ++) {
for (unsigned int i = 1 ; i < len ; i ++)
{
unsigned int len_min_entry = MAXINT ;

View file

@ -40,7 +40,8 @@
#include "graph.h"
namespace Graph {
namespace Graph
{
static std :: vector <std :: pair <double, double> > vectCoord ; // Coordinates

View file

@ -37,7 +37,8 @@
#include "part_route_eval.h"
#include "graph.h"
PartRouteEval :: PartRouteEval (float __from, float __to) : from (__from), to (__to) {}
PartRouteEval :: PartRouteEval (float __from, float __to) : from (__from), to (__to)
{}
void PartRouteEval :: operator () (Route & __route)
{

View file

@ -42,7 +42,8 @@
#include "route.h"
/** Partial Mapped Crossover */
class PartialMappedXover : public eoQuadOp <Route> {
class PartialMappedXover : public eoQuadOp <Route>
{
public :