Documentation updated
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1692 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
11b2b45c12
commit
deaeaeec36
16 changed files with 101 additions and 33 deletions
|
|
@ -86,7 +86,7 @@ public:
|
|||
|
||||
/**
|
||||
* Setter
|
||||
* @param index of the IndexNeighbor
|
||||
* @param _key index of the IndexNeighbor
|
||||
*/
|
||||
void index(unsigned int _key){
|
||||
key=_key;
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ public:
|
|||
|
||||
/**
|
||||
* Constructor
|
||||
* @param _neighborhood the size of the neighborhood
|
||||
* @param _neighborhoodSize the size of the neighborhood
|
||||
*/
|
||||
moIndexNeighborhood(unsigned int _neighborhoodSize):neighborhoodSize(_neighborhoodSize){}
|
||||
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ public:
|
|||
|
||||
/**
|
||||
* Constructor
|
||||
* @param _neighborhood the size of the neighborhood
|
||||
* @param _neighborhoodSize the size of the neighborhood
|
||||
*/
|
||||
moOrderNeighborhood(unsigned int _neighborhoodSize): moIndexNeighborhood<Neighbor>(_neighborhoodSize), currentIndex(0){}
|
||||
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ public:
|
|||
|
||||
/**
|
||||
* Constructor
|
||||
* @param _neighborhood the size of the neighborhood
|
||||
* @param _neighborhoodSize the size of the neighborhood
|
||||
*/
|
||||
moRndWithReplNeighborhood(unsigned int _neighborhoodSize): moIndexNeighborhood<Neighbor>(_neighborhoodSize){}
|
||||
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ public:
|
|||
|
||||
/**
|
||||
* Constructor
|
||||
* @param _neighborhood the size of the neighborhood
|
||||
* @param _neighborhoodSize the size of the neighborhood
|
||||
*/
|
||||
moRndWithoutReplNeighborhood(unsigned int _neighborhoodSize): moIndexNeighborhood<Neighbor>(_neighborhoodSize), maxIndex(0){
|
||||
for(unsigned int i=0; i < neighborhoodSize; i++)
|
||||
|
|
|
|||
Loading…
Reference in a new issue