I'm using gcc v3.4.1 and boost_CVS captured on Tue Jun 29 05:25:17 EDT 2004.
I'm developing a boost.graph application that must deal with multiple
graphs.
The following typedefs describe how its using boost.graph:
typedef
boost::adjacency_listboost::vecS,boost::vecS,boost::bidirectionalS GraphT;
typedef boost::shared_ptr<GraphT> GraphPtr;
typedef boost::graph_traits <GraphT>::vertex_descriptor Vertex;
typedef boost::graph_traits <GraphT>::edge_descriptor Edge;
In addition, I have various maps that must act as a "bridge" between
these graphs.
I'm using the following typedefs as keys in such maps:
typedef std::pair