GraphStream Users

Archives de la liste Aide


ConnectedComponent


Chronologique Discussions 
  • From: Julien SCHLEICH <julien.schleich AT uni.lu>
  • To: "graphstream-users AT litislab.fr" <graphstream-users AT litislab.fr>
  • Subject: ConnectedComponent
  • Date: Tue, 15 May 2012 17:12:12 +0000
  • Accept-language: fr-FR, en-GB, en-US

Dear all,

I think there is a bug in the gs-algo-1.2-git.jar concerning connected components. 
The ConnectedComponents seems to work well, as their number is good and I can iterate on them.
But somehow, when I want to iterate on the nodes of each connected component, each connected component is empty.
In my code, the size variable is always 0.
Any idea?
Here is the code:

ConnectedComponents cc = new ConnectedComponents(g);
cc.compute();
Iterator<ConnectedComponent> itCC = cc.iterator();
while (itCC.hasNext()){
ConnectedComponent curCC = itCC.next();
Iterator<Node> itNode = curCC.iterator();
while (itNode.hasNext()){
itNode.next();
size++;
}
System.out.println(size);
}

Thanks in advance for your help.

Julien Schleich



Archives gérées par MHonArc 2.6.16.

Top of page