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

moved a file to sgb-regression

[SVN r11561]
This commit is contained in:
Jeremy Siek
2001-11-04 04:07:06 +00:00
parent 6fb684c821
commit df1d831cdf
3 changed files with 2 additions and 2 deletions

View File

@@ -95,7 +95,6 @@ compile libs/graph/example/remove_edge_if_bidir.cpp
compile libs/graph/example/remove_edge_if_dir.cpp
compile libs/graph/example/remove_edge_if_undir.cpp
compile libs/graph/example/reverse-graph-eg.cpp
compile libs/graph/example/roget_components.cpp
compile libs/graph/example/scc.cpp
compile libs/graph/example/strong-components.cpp
compile libs/graph/example/strong_components.cpp

View File

@@ -8,3 +8,4 @@
compile libs/graph/example/girth.cpp
compile libs/graph/example/miles_span.cpp
compile libs/graph/example/topo-sort-with-sgb.cpp
compile libs/graph/example/roget_components.cpp

View File

@@ -1,4 +1,4 @@
#include <boost/graph/adjacency_list.hpp>
typedef boost::adjacency_list<boost::listS, boost::listS, boost::undirectedS, boost::property<vertex_id_t, std::size_t>, boost::property<edge_id_t, std::size_t> > Graph;
typedef boost::adjacency_list<boost::setS, boost::setS, boost::undirectedS, boost::property<vertex_id_t, std::size_t>, boost::property<edge_id_t, std::size_t> > Graph;
typedef boost::property<vertex_id_t, std::size_t> VertexId;
typedef boost::property<edge_id_t, std::size_t> EdgeID;