Actually, there is, the bgl-viz library. This is just an optional I/O package that allows creating graphviz dot files. The reason you might want to do this is the graphviz package does a good job of laying out a graph diagram. This library doesn't get built in the primary boost build. To build it, go to $BOOST/libs/graph/build and run bjam. John Maddock wrote:
Is the graph library not installed as part of the standard installation? Perhaps the problem is related to boost_python? Or are they installed somewhere else? Is there a separate procedure I'm missing?
The Boost Graph library consists of headers only, there are no separate sources to compile, and hence no libraries to install for it, just include Boost in your compiler's include path and away you go,
John.