Documentation, add the method construct in AbstractTopology

This commit is contained in:
lasnier 2012-11-21 17:51:34 +01:00
commit 1c79ce0948
15 changed files with 90 additions and 392 deletions

View file

@ -38,9 +38,15 @@ namespace paradiseo
namespace smp
{
/**
*Star: Inherit from TopologyBuilder. Reprents a builder for a star topology : each node excepted the first has every other node for neighor. The first node doesn't have any neighbor.
*/
class Star : public TopologyBuilder
{
public :
/**
*Fills the given matrix for a star topology with the specified number of nodes.
*/
void operator()(unsigned nbIsland, std::vector<std::vector<bool>>& matrix) const;
};