EDijkstra.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. // Copyright 2017, University of Freiburg,
  2. // Chair of Algorithms and Data Structures.
  3. // Authors: Patrick Brosi <brosi@informatik.uni-freiburg.de>
  4. #ifndef UTIL_GRAPH_EDIJKSTRA_H_
  5. #define UTIL_GRAPH_EDIJKSTRA_H_
  6. #include <limits>
  7. #include <list>
  8. #include <queue>
  9. #include <set>
  10. #include <unordered_map>
  11. #include "util/graph/Edge.h"
  12. #include "util/graph/Graph.h"
  13. #include "util/graph/Node.h"
  14. #include "util/graph/ShortestPath.h"
  15. namespace util {
  16. namespace graph {
  17. using util::graph::Graph;
  18. using util::graph::Node;
  19. using util::graph::Edge;
  20. // edge-based dijkstra - settles edges instead of nodes
  21. class EDijkstra : public ShortestPath<EDijkstra> {
  22. public:
  23. template <typename N, typename E, typename C>
  24. struct RouteEdge {
  25. RouteEdge() : e(0), parent(0), d(), h(), n(0) {}
  26. RouteEdge(Edge<N, E>* e) : e(e), parent(0), d(), h(), n(0) {}
  27. RouteEdge(Edge<N, E>* e, Edge<N, E>* parent, Node<N, E>* n, C d)
  28. : e(e), parent(parent), d(d), h(), n(n) {}
  29. RouteEdge(Edge<N, E>* e, Edge<N, E>* parent, Node<N, E>* n, C d, C h)
  30. : e(e), parent(parent), d(d), h(h), n(n) {}
  31. Edge<N, E>* e;
  32. Edge<N, E>* parent;
  33. C d;
  34. C h;
  35. Node<N, E>* n;
  36. bool operator<(const RouteEdge<N, E, C>& p) const {
  37. return h > p.h || (h == p.h && d > p.d);
  38. }
  39. };
  40. template <typename N, typename E, typename C>
  41. struct CostFunc : public ShortestPath::CostFunc<N, E, C> {
  42. C operator()(const Node<N, E>* from, const Edge<N, E>* e,
  43. const Node<N, E>* to) const {
  44. UNUSED(from);
  45. UNUSED(e);
  46. UNUSED(to);
  47. return C();
  48. };
  49. };
  50. template <typename N, typename E, typename C>
  51. struct HeurFunc : public ShortestPath::HeurFunc<N, E, C> {
  52. C operator()(const Node<N, E>* from,
  53. const std::set<Node<N, E>*>& to) const {
  54. UNUSED(from);
  55. UNUSED(to);
  56. return C();
  57. };
  58. };
  59. template <typename N, typename E, typename C>
  60. using Settled = std::unordered_map<Edge<N, E>*, RouteEdge<N, E, C> >;
  61. template <typename N, typename E, typename C>
  62. using PQ = std::priority_queue<RouteEdge<N, E, C> >;
  63. template <typename N, typename E, typename C>
  64. static C shortestPathImpl(const std::set<Edge<N, E>*> from,
  65. const std::set<Edge<N, E>*>& to,
  66. const ShortestPath::CostFunc<N, E, C>& costFunc,
  67. const ShortestPath::HeurFunc<N, E, C>& heurFunc,
  68. EList<N, E>* resEdges, NList<N, E>* resNodes);
  69. template <typename N, typename E, typename C>
  70. static C shortestPathImpl(Node<N, E>* from, const std::set<Node<N, E>*>& to,
  71. const ShortestPath::CostFunc<N, E, C>& costFunc,
  72. const ShortestPath::HeurFunc<N, E, C>& heurFunc,
  73. EList<N, E>* resEdges, NList<N, E>* resNodes);
  74. template <typename N, typename E, typename C>
  75. static C shortestPathImpl(Edge<N, E>* from, const std::set<Node<N, E>*>& to,
  76. const ShortestPath::CostFunc<N, E, C>& costFunc,
  77. const ShortestPath::HeurFunc<N, E, C>& heurFunc,
  78. EList<N, E>* resEdges, NList<N, E>* resNodes);
  79. template <typename N, typename E, typename C>
  80. static C shortestPathImpl(const std::set<Edge<N, E>*>& from,
  81. const std::set<Node<N, E>*>& to,
  82. const ShortestPath::CostFunc<N, E, C>& costFunc,
  83. const ShortestPath::HeurFunc<N, E, C>& heurFunc,
  84. EList<N, E>* resEdges, NList<N, E>* resNodes);
  85. template <typename N, typename E, typename C>
  86. static std::unordered_map<Edge<N, E>*, C> shortestPathImpl(
  87. const std::set<Edge<N, E>*>& from,
  88. const ShortestPath::CostFunc<N, E, C>& costFunc, bool rev);
  89. template <typename N, typename E, typename C>
  90. static std::unordered_map<Edge<N, E>*, C> shortestPathImpl(
  91. Edge<N, E>* from, const std::set<Edge<N, E>*>& to,
  92. const ShortestPath::CostFunc<N, E, C>& costFunc,
  93. const ShortestPath::HeurFunc<N, E, C>& heurFunc,
  94. std::unordered_map<Edge<N, E>*, EList<N, E>*> resEdges,
  95. std::unordered_map<Edge<N, E>*, NList<N, E>*> resNodes);
  96. template <typename N, typename E, typename C>
  97. static void buildPath(Edge<N, E>* curE, const Settled<N, E, C>& settled,
  98. NList<N, E>* resNodes, EList<N, E>* resEdges);
  99. template <typename N, typename E, typename C>
  100. static inline void relax(RouteEdge<N, E, C>& cur,
  101. const std::set<Edge<N, E>*>& to,
  102. const ShortestPath::CostFunc<N, E, C>& costFunc,
  103. const ShortestPath::HeurFunc<N, E, C>& heurFunc,
  104. PQ<N, E, C>& pq);
  105. template <typename N, typename E, typename C>
  106. static void relaxInv(RouteEdge<N, E, C>& cur,
  107. const ShortestPath::CostFunc<N, E, C>& costFunc,
  108. PQ<N, E, C>& pq);
  109. static size_t ITERS;
  110. };
  111. #include "util/graph/EDijkstra.tpp"
  112. }
  113. }
  114. #endif // UTIL_GRAPH_DIJKSTRA_H_