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

@ -37,9 +37,15 @@ namespace paradiseo
namespace smp
{
/**
*Complete: Inherit from TopologyBuilder. Reprents a builder for a complete topology : each node has every other node for neighor.
*/
class Complete: public TopologyBuilder
{
public :
/**
*Fills the given matrix for a complete topology with the specified number of nodes.
*/
void operator()(unsigned nbIsland, std::vector<std::vector<bool>>& matrix) const;
};