mirror of
https://github.com/boostorg/graph.git
synced 2026-02-26 04:42:16 +00:00
Merged Boost.Graph, Boost.Graph.Parallel, and Boost.PropertyMap changes from Boost trunk
[SVN r85813]
This commit is contained in:
@@ -17,7 +17,6 @@ template <typename Graph>
|
||||
void test_graph_nonloop()
|
||||
{
|
||||
typedef typename graph_traits<Graph>::vertex_descriptor Vertex;
|
||||
typedef typename graph_traits<Graph>::edge_descriptor Edge;
|
||||
|
||||
// Build a graph with 1 edge and turn it into a loop.
|
||||
Graph g(5);
|
||||
@@ -36,7 +35,6 @@ template <typename Graph>
|
||||
void test_multigraph_nonloop()
|
||||
{
|
||||
typedef typename graph_traits<Graph>::vertex_descriptor Vertex;
|
||||
typedef typename graph_traits<Graph>::edge_descriptor Edge;
|
||||
|
||||
// Build a graph with 1 edge and turn it into a loop.
|
||||
Graph g(5);
|
||||
@@ -55,7 +53,6 @@ template <typename Graph>
|
||||
void test_graph_loop()
|
||||
{
|
||||
typedef typename graph_traits<Graph>::vertex_descriptor Vertex;
|
||||
typedef typename graph_traits<Graph>::edge_descriptor Edge;
|
||||
|
||||
Graph g(5);
|
||||
Vertex v = *next(vertices(g).first, 2);
|
||||
@@ -70,7 +67,6 @@ template <typename Graph>
|
||||
void test_multigraph_loop()
|
||||
{
|
||||
typedef typename graph_traits<Graph>::vertex_descriptor Vertex;
|
||||
typedef typename graph_traits<Graph>::edge_descriptor Edge;
|
||||
|
||||
Graph g(5);
|
||||
Vertex v = *next(vertices(g).first, 2);
|
||||
|
||||
Reference in New Issue
Block a user