cycle_canceling.hpp 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. //=======================================================================
  2. // Copyright 2013 University of Warsaw.
  3. // Authors: Piotr Wygocki
  4. //
  5. // Distributed under the Boost Software License, Version 1.0. (See
  6. // accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. //=======================================================================
  9. //
  10. //
  11. //This algorithm is described in "Network Flows: Theory, Algorithms, and Applications"
  12. // by Ahuja, Magnanti, Orlin.
  13. #ifndef BOOST_GRAPH_CYCLE_CANCELING_HPP
  14. #define BOOST_GRAPH_CYCLE_CANCELING_HPP
  15. #include <numeric>
  16. #include <boost/property_map/property_map.hpp>
  17. #include <boost/graph/graph_traits.hpp>
  18. #include <boost/graph/graph_concepts.hpp>
  19. #include <boost/pending/indirect_cmp.hpp>
  20. #include <boost/pending/relaxed_heap.hpp>
  21. #include <boost/graph/bellman_ford_shortest_paths.hpp>
  22. #include <boost/graph/iteration_macros.hpp>
  23. #include <boost/graph/detail/augment.hpp>
  24. #include <boost/graph/find_flow_cost.hpp>
  25. namespace boost {
  26. namespace detail {
  27. template <typename PredEdgeMap, typename Vertex>
  28. class RecordEdgeMapAndCycleVertex
  29. : public bellman_visitor<edge_predecessor_recorder<PredEdgeMap, on_edge_relaxed> > {
  30. typedef edge_predecessor_recorder<PredEdgeMap, on_edge_relaxed> PredRec;
  31. public:
  32. RecordEdgeMapAndCycleVertex(PredEdgeMap pred, Vertex & v) :
  33. bellman_visitor<PredRec>(PredRec(pred)), m_v(v), m_pred(pred) {}
  34. template <typename Graph, typename Edge>
  35. void edge_not_minimized(Edge e, const Graph & g) const {
  36. typename graph_traits<Graph>::vertices_size_type n = num_vertices(g) + 1;
  37. //edge e is not minimized but does not have to be on the negative weight cycle
  38. //to find vertex on negative wieight cycle we move n+1 times backword in the PredEdgeMap graph.
  39. while(n > 0) {
  40. e = get(m_pred, source(e, g));
  41. --n;
  42. }
  43. m_v = source(e, g);
  44. }
  45. private:
  46. Vertex & m_v;
  47. PredEdgeMap m_pred;
  48. };
  49. } //detail
  50. template <class Graph, class Pred, class Distance, class Reversed, class ResidualCapacity, class Weight>
  51. void cycle_canceling(const Graph &g, Weight weight, Reversed rev, ResidualCapacity residual_capacity, Pred pred, Distance distance) {
  52. typedef filtered_graph<const Graph, is_residual_edge<ResidualCapacity> > ResGraph;
  53. ResGraph gres = detail::residual_graph(g, residual_capacity);
  54. typedef graph_traits<ResGraph> ResGTraits;
  55. typedef graph_traits<Graph> GTraits;
  56. typedef typename ResGTraits::edge_descriptor edge_descriptor;
  57. typedef typename ResGTraits::vertex_descriptor vertex_descriptor;
  58. typename GTraits::vertices_size_type N = num_vertices(g);
  59. BGL_FORALL_VERTICES_T(v, g, Graph) {
  60. put(pred, v, edge_descriptor());
  61. put(distance, v, 0);
  62. }
  63. vertex_descriptor cycleStart;
  64. while(!bellman_ford_shortest_paths(gres, N,
  65. weight_map(weight).
  66. distance_map(distance).
  67. visitor(detail::RecordEdgeMapAndCycleVertex<Pred, vertex_descriptor>(pred, cycleStart)))) {
  68. detail::augment(g, cycleStart, cycleStart, pred, residual_capacity, rev);
  69. BGL_FORALL_VERTICES_T(v, g, Graph) {
  70. put(pred, v, edge_descriptor());
  71. put(distance, v, 0);
  72. }
  73. }
  74. }
  75. //in this namespace argument dispatching takes place
  76. namespace detail {
  77. template <class Graph, class P, class T, class R, class ResidualCapacity, class Weight, class Reversed, class Pred, class Distance>
  78. void cycle_canceling_dispatch2(
  79. const Graph &g,
  80. Weight weight,
  81. Reversed rev,
  82. ResidualCapacity residual_capacity,
  83. Pred pred,
  84. Distance dist,
  85. const bgl_named_params<P, T, R>& params) {
  86. cycle_canceling(g, weight, rev, residual_capacity, pred, dist);
  87. }
  88. //setting default distance map
  89. template <class Graph, class P, class T, class R, class Pred, class ResidualCapacity, class Weight, class Reversed>
  90. void cycle_canceling_dispatch2(
  91. Graph &g,
  92. Weight weight,
  93. Reversed rev,
  94. ResidualCapacity residual_capacity,
  95. Pred pred,
  96. param_not_found,
  97. const bgl_named_params<P, T, R>& params) {
  98. typedef typename property_traits<Weight>::value_type D;
  99. std::vector<D> d_map(num_vertices(g));
  100. cycle_canceling(g, weight, rev, residual_capacity, pred,
  101. make_iterator_property_map(d_map.begin(), choose_const_pmap(get_param(params, vertex_index), g, vertex_index)));
  102. }
  103. template <class Graph, class P, class T, class R, class ResidualCapacity, class Weight, class Reversed, class Pred>
  104. void cycle_canceling_dispatch1(
  105. Graph &g,
  106. Weight weight,
  107. Reversed rev,
  108. ResidualCapacity residual_capacity,
  109. Pred pred,
  110. const bgl_named_params<P, T, R>& params) {
  111. cycle_canceling_dispatch2(g, weight, rev,residual_capacity, pred,
  112. get_param(params, vertex_distance), params);
  113. }
  114. //setting default predecessors map
  115. template <class Graph, class P, class T, class R, class ResidualCapacity, class Weight, class Reversed>
  116. void cycle_canceling_dispatch1(
  117. Graph &g,
  118. Weight weight,
  119. Reversed rev,
  120. ResidualCapacity residual_capacity,
  121. param_not_found,
  122. const bgl_named_params<P, T, R>& params) {
  123. typedef typename graph_traits<Graph>::edge_descriptor edge_descriptor;
  124. std::vector<edge_descriptor> p_map(num_vertices(g));
  125. cycle_canceling_dispatch2(g, weight, rev, residual_capacity,
  126. make_iterator_property_map(p_map.begin(), choose_const_pmap(get_param(params, vertex_index), g, vertex_index)),
  127. get_param(params, vertex_distance), params);
  128. }
  129. }//detail
  130. template <class Graph, class P, class T, class R>
  131. void cycle_canceling(Graph &g,
  132. const bgl_named_params<P, T, R>& params) {
  133. cycle_canceling_dispatch1(g,
  134. choose_const_pmap(get_param(params, edge_weight), g, edge_weight),
  135. choose_const_pmap(get_param(params, edge_reverse), g, edge_reverse),
  136. choose_pmap(get_param(params, edge_residual_capacity),
  137. g, edge_residual_capacity),
  138. get_param(params, vertex_predecessor),
  139. params);
  140. }
  141. template <class Graph>
  142. void cycle_canceling(Graph &g) {
  143. bgl_named_params<int, buffer_param_t> params(0);
  144. cycle_canceling(g, params);
  145. }
  146. }
  147. #endif /* BOOST_GRAPH_CYCLE_CANCELING_HPP */