12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- #ifndef BOOST_GRAPH_DISTRIBUTED_ST_CONNECTED_HPP
- #define BOOST_GRAPH_DISTRIBUTED_ST_CONNECTED_HPP
- #include <boost/graph/graph_traits.hpp>
- #include <boost/graph/two_bit_color_map.hpp>
- #include <boost/graph/iteration_macros.hpp>
- #include <boost/pending/queue.hpp>
- namespace boost { namespace graph {
- template<typename Graph, typename ColorMap>
- bool
- st_connected(const Graph& g,
- typename graph_traits<Graph>::vertex_descriptor s,
- typename graph_traits<Graph>::vertex_descriptor t,
- ColorMap color)
- {
- typedef typename property_traits<ColorMap>::value_type Color;
- typedef color_traits<Color> ColorTraits;
- typedef typename graph_traits<Graph>::vertex_descriptor Vertex;
-
- BGL_FORALL_VERTICES_T(v, g, Graph)
- put(color, v, ColorTraits::white());
-
- put(color, s, ColorTraits::gray());
-
- put(color, t, ColorTraits::green());
- queue<Vertex> Q;
- Q.push(s);
- Q.push(t);
- while (!Q.empty()) {
- Vertex u = Q.top(); Q.pop();
- Color u_color = get(color, u);
- BGL_FORALL_OUTEDGES_T(u, e, g, Graph) {
- Vertex v = target(e, g);
- Color v_color = get(color, v);
- if (v_color == ColorTraits::white()) {
-
- Color u_color = get(color, u);
- put(color, v, u_color);
-
-
- Q.push(v);
- } else if (v_color != ColorTraits::black() && u_color != v_color) {
-
- return true;
- }
- }
-
- put(color, u, ColorTraits::black());
- }
- return false;
- }
- template<typename Graph>
- inline bool
- st_connected(const Graph& g,
- typename graph_traits<Graph>::vertex_descriptor s,
- typename graph_traits<Graph>::vertex_descriptor t)
- {
- return st_connected(g, s, t,
- make_two_bit_color_map(num_vertices(g),
- get(vertex_index, g)));
- }
- } }
- #endif
|