Doc revised

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1819 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
jhumeau 2010-05-21 12:37:41 +00:00
commit 93533e5fad
88 changed files with 188 additions and 190 deletions

View file

@ -33,7 +33,7 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#include <memory/moMemory.h>
/**
* Count the number of move, noMove and the number of successive stagnation since the last Move
* Count the number of move, no move and the successive stagnation since the last Move
*/
template< class Neighbor >
class moCountMoveMemory : virtual public moMemory<Neighbor> {
@ -52,7 +52,7 @@ public:
}
/**
* @param _sol a solution (unused)
* @param _sol unused solution
* @param _neighbor unused neighbor
*/
void add(EOT & _sol, Neighbor & _neighbor) {

View file

@ -17,7 +17,7 @@ public:
virtual void init(EOT & _sol) = 0;
/**
* Add data in the memory
* Add data to the memory
* @param _sol the current solution
* @param _neighbor the current neighbor
*/

View file

@ -46,7 +46,7 @@ public:
typedef typename Neighbor::EOT EOT;
/**
* Default Constructor
* Constructor
* @param _monOp an eoMonOp (diversification operator)
* @param _fullEval a full evaluation function
*/

View file

@ -64,7 +64,7 @@ public:
/**
* add a new neighbor in the tabuList
* @param _sol the current solution (unused)
* @param _sol unused solution
* @param _neighbor the current neighbor
*/
virtual void add(EOT & _sol, Neighbor & _neighbor) {
@ -84,8 +84,8 @@ public:
/**
* update the tabulist
* @param _sol the current solution (unused)
* @param _neighbor the current neighbor (unused)
* @param _sol unused solution
* @param _neighbor unused neighbor
*/
virtual void update(EOT & _sol, Neighbor & _neighbor) {
if (howlong > 0)
@ -96,7 +96,7 @@ public:
/**
* check if the move is tabu
* @param _sol the current solution (unused)
* @param _sol unused solution
* @param _neighbor the current neighbor
* @return true if tabuList contains _sol
*/

View file

@ -65,7 +65,7 @@ public:
/**
* add a new solution in the tabuList
* @param _sol the current solution
* @param _neighbor the current neighbor (unused)
* @param _neighbor unused neighbor
*/
virtual void add(EOT & _sol, Neighbor & _neighbor) {