Consistency of names and guard in topology.h

This commit is contained in:
lasnier 2012-11-23 20:20:07 +01:00
commit 6b2a695622
11 changed files with 47 additions and 42 deletions

View file

@ -27,6 +27,9 @@ ParadisEO WebSite : http://paradiseo.gforge.inria.fr
Contact: paradiseo-help@lists.gforge.inria.fr
*/
#ifndef TOPOLOGY_H_
#define TOPOLOGY_H_
#include <vector>
#include <topology/abstractTopology.h>
@ -57,13 +60,13 @@ public :
* Inherited from AbstractTopology
* @see smp::topology::AbstractTopology::getIdNeighbors
*/
std::vector<unsigned> getIdNeighbors(unsigned idIsland) const;
std::vector<unsigned> getIdNeighbors(unsigned idNode) const;
/**
* Inherited from AbstractTopology : construct or re-construct a topology with the given number of nodes
* @param nbIsland number of nodes for the topology
* @param nbNode number of nodes for the topology
*/
void construct(unsigned nbIsland);
void construct(unsigned nbNode);
private :
@ -76,3 +79,5 @@ private :
}
}
#endif