jshun/ligra

Does BFS cannot traverse all vertices?

libaoke opened this issue · 1 comments

Does BFS cannot traverse all vertices?

while(!Frontier.isEmpty()){ //loop until frontier is empty
vertexSubset output = edgeMap(GA, Frontier, BFS_F(Parents));
Frontier.del();
Frontier = output; //set new frontier
}

you may close this issue too. thanks