2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-11 11:52:12 +00:00

changed VertexAndEdgeList to VertexList and EdgeList

[SVN r10162]
This commit is contained in:
Jeremy Siek
2001-05-21 00:47:11 +00:00
parent b7584b6716
commit abe493726d

View File

@@ -65,7 +65,8 @@ namespace boost {
{
typedef typename graph_traits<Graph>::vertex_descriptor Vertex;
typedef typename graph_traits<Graph>::edge_descriptor Edge;
function_requires<VertexAndEdgeListGraphConcept<Graph> >();
function_requires<VertexListGraphConcept<Graph> >();
function_requires<EdgeListGraphConcept<Graph> >();
function_requires<OutputIteratorConcept<OutputIterator, Edge> >();
function_requires<ReadWritePropertyMapConcept<Rank, Vertex> >();
function_requires<ReadWritePropertyMapConcept<Parent, Vertex> >();