
11 Jul
2006
11 Jul
'06
9:07 a.m.
Hello everyone,
Hello.
I'm starting to make use of the BGL in one of my projects. It was learnt from the documentation that there were basically 2 forms of representations of a graph: - adjacency-list, and - adjacency-matrix The latter is normally more suitable for denser graphs.
My question is, Is ther any function that can shift the graph from between these two forms of data structure?
Try boost::copy_graph. <http://www.boost.org/libs/graph/doc/copy_graph.html>
HTH, Cromwell D. Enage
Thanks.