Hi all,

I'm using the BOOST libraries to compute an adjacency list and its transitive closure. I'm defining them as follows:
Code:
...
typedef boost::adjacency_list<> AdjacencyList;
AdjacencyList g_transitiveClosure;
AdjacencyList g_adjacencyList;
...
What I'm doing is:
loop start
add edge information to the g_adjacencyList
compute the transitive...