Ajout des tests des evals
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1666 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
88afa96663
commit
50359071ef
7 changed files with 90 additions and 3 deletions
|
|
@ -64,6 +64,7 @@ public:
|
|||
// tmp fitness value of the current solution
|
||||
Fitness tmpFit;
|
||||
|
||||
|
||||
// save current fitness value
|
||||
tmpFit = _sol.fitness();
|
||||
|
||||
|
|
|
|||
|
|
@ -63,6 +63,14 @@ public:
|
|||
best=new Neighbor();
|
||||
}
|
||||
|
||||
/**
|
||||
* Destructor
|
||||
*/
|
||||
~moSimpleHCexplorer(){
|
||||
delete current;
|
||||
delete best;
|
||||
}
|
||||
|
||||
/**
|
||||
* initParam: NOTHING TO DO
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -43,11 +43,11 @@
|
|||
/**
|
||||
* Container of the neighbor informations
|
||||
*/
|
||||
template< class EOT , class Fitness >
|
||||
template< class EOType , class Fitness >
|
||||
class moNeighbor : public eoObject, public eoPersistent
|
||||
{
|
||||
public:
|
||||
|
||||
typedef EOType EOT;
|
||||
/**
|
||||
* Default Constructor
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue