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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user