
On 8/28/07, Sam Peterson <peabodyenator@gmail.com> wrote:
On 8/28/07, Stephan Diederich <stephan.diederich@googlemail.com> wrote:
Just rechecked, but I think I chose setS: (maybe bad formatting?) typedef adjacency_list<setS, vecS, directedS, Vertex, Edge,no_property, setS> Graph;
No, you chose setS for the vertex list, try this and see if it works for you:
typedef adjacency_list<vecS, setS, directedS, Vertex> Graph;
This is inconsistent IMO: template <class OutEdgeListS = vecS, // a Sequence or an AssociativeContainer class VertexListS = vecS, // a Sequence or a RandomAccessContainer class DirectedS = directedS, class VertexProperty = no_property, class EdgeProperty = no_property, class GraphProperty = no_property, class EdgeListS = listS> class adjacency_list Jon