On Mon, Jun 15, 2009 at 11:37 PM, <caligulaemperorofrome@yahoo.com> wrote:
I'm trying to add a "list of edges" as an edge property type like so.


typedef adjacency_list < listS, vecS, directedS > Traits;

typedef adjacency_list < listS, vecS, directedS, vertex_properties,
    property < edge_list_t, std::list<Traits::edge_descriptor>, edge_properties > > > graph_t;


It would probably be easier to use bundled properties. http://www.boost.org/doc/libs/1_38_0/libs/graph/doc/bundles.html

As for the version, you could look at boost/version.hpp.

Andrew Sutton
andrew.n.sutton@gmail.com