| [610] | 1 | // -*- c++ -*- | 
|---|
|  | 2 | #ifndef HUGO_MINLENGTHPATHS_H | 
|---|
|  | 3 | #define HUGO_MINLENGTHPATHS_H | 
|---|
|  | 4 |  | 
|---|
| [759] | 5 | ///\ingroup flowalgs | 
|---|
| [610] | 6 | ///\file | 
|---|
|  | 7 | ///\brief An algorithm for finding k paths of minimal total length. | 
|---|
|  | 8 |  | 
|---|
| [611] | 9 |  | 
|---|
| [610] | 10 | #include <hugo/maps.h> | 
|---|
|  | 11 | #include <vector> | 
|---|
|  | 12 | #include <hugo/mincostflows.h> | 
|---|
|  | 13 |  | 
|---|
|  | 14 | namespace hugo { | 
|---|
|  | 15 |  | 
|---|
| [759] | 16 | /// \addtogroup flowalgs | 
|---|
| [610] | 17 | /// @{ | 
|---|
|  | 18 |  | 
|---|
| [860] | 19 | ///\brief Implementation of an algorithm for finding k edge-disjoint paths between 2 nodes | 
|---|
| [610] | 20 | /// of minimal total length | 
|---|
|  | 21 | /// | 
|---|
| [860] | 22 | /// The class \ref hugo::MinLengthPaths implements | 
|---|
| [610] | 23 | /// an algorithm for finding k edge-disjoint paths | 
|---|
|  | 24 | /// from a given source node to a given target node in an | 
|---|
| [860] | 25 | /// edge-weighted directed graph having minimal total weight (length). | 
|---|
| [610] | 26 | /// | 
|---|
| [860] | 27 | ///\warning Length values should be nonnegative. | 
|---|
|  | 28 | /// | 
|---|
|  | 29 | ///\param Graph The directed graph type the algorithm runs on. | 
|---|
|  | 30 | ///\param LengthMap The type of the length map (values should be nonnegative). | 
|---|
| [610] | 31 | /// | 
|---|
|  | 32 | ///\author Attila Bernath | 
|---|
|  | 33 | template <typename Graph, typename LengthMap> | 
|---|
|  | 34 | class MinLengthPaths{ | 
|---|
|  | 35 |  | 
|---|
|  | 36 |  | 
|---|
|  | 37 | typedef typename LengthMap::ValueType Length; | 
|---|
|  | 38 |  | 
|---|
|  | 39 | typedef typename Graph::Node Node; | 
|---|
|  | 40 | typedef typename Graph::NodeIt NodeIt; | 
|---|
|  | 41 | typedef typename Graph::Edge Edge; | 
|---|
|  | 42 | typedef typename Graph::OutEdgeIt OutEdgeIt; | 
|---|
|  | 43 | typedef typename Graph::template EdgeMap<int> EdgeIntMap; | 
|---|
|  | 44 |  | 
|---|
|  | 45 | typedef ConstMap<Edge,int> ConstMap; | 
|---|
|  | 46 |  | 
|---|
|  | 47 | //Input | 
|---|
|  | 48 | const Graph& G; | 
|---|
|  | 49 |  | 
|---|
|  | 50 | //Auxiliary variables | 
|---|
|  | 51 | //This is the capacity map for the mincostflow problem | 
|---|
|  | 52 | ConstMap const1map; | 
|---|
|  | 53 | //This MinCostFlows instance will actually solve the problem | 
|---|
|  | 54 | MinCostFlows<Graph, LengthMap, ConstMap> mincost_flow; | 
|---|
|  | 55 |  | 
|---|
|  | 56 | //Container to store found paths | 
|---|
|  | 57 | std::vector< std::vector<Edge> > paths; | 
|---|
|  | 58 |  | 
|---|
|  | 59 | public : | 
|---|
|  | 60 |  | 
|---|
|  | 61 |  | 
|---|
| [860] | 62 | /// The constructor of the class. | 
|---|
|  | 63 |  | 
|---|
|  | 64 | ///\param _G The directed graph the algorithm runs on. | 
|---|
|  | 65 | ///\param _length The length (weight or cost) of the edges. | 
|---|
| [610] | 66 | MinLengthPaths(Graph& _G, LengthMap& _length) : G(_G), | 
|---|
|  | 67 | const1map(1), mincost_flow(_G, _length, const1map){} | 
|---|
|  | 68 |  | 
|---|
|  | 69 | ///Runs the algorithm. | 
|---|
|  | 70 |  | 
|---|
|  | 71 | ///Runs the algorithm. | 
|---|
|  | 72 | ///Returns k if there are at least k edge-disjoint paths from s to t. | 
|---|
| [851] | 73 | ///Otherwise it returns the number of found edge-disjoint paths from s to t. | 
|---|
| [860] | 74 | /// | 
|---|
|  | 75 | ///\param s The source node. | 
|---|
|  | 76 | ///\param t The target node. | 
|---|
|  | 77 | ///\param k How many paths are we looking for? | 
|---|
|  | 78 | /// | 
|---|
| [610] | 79 | int run(Node s, Node t, int k) { | 
|---|
|  | 80 |  | 
|---|
|  | 81 | int i = mincost_flow.run(s,t,k); | 
|---|
| [860] | 82 |  | 
|---|
| [610] | 83 |  | 
|---|
|  | 84 | //Let's find the paths | 
|---|
|  | 85 | //We put the paths into stl vectors (as an inner representation). | 
|---|
|  | 86 | //In the meantime we lose the information stored in 'reversed'. | 
|---|
|  | 87 | //We suppose the lengths to be positive now. | 
|---|
|  | 88 |  | 
|---|
|  | 89 | //We don't want to change the flow of mincost_flow, so we make a copy | 
|---|
|  | 90 | //The name here suggests that the flow has only 0/1 values. | 
|---|
|  | 91 | EdgeIntMap reversed(G); | 
|---|
|  | 92 |  | 
|---|
| [788] | 93 | for(typename Graph::EdgeIt e(G); e!=INVALID; ++e) | 
|---|
| [610] | 94 | reversed[e] = mincost_flow.getFlow()[e]; | 
|---|
|  | 95 |  | 
|---|
|  | 96 | paths.clear(); | 
|---|
|  | 97 | //total_length=0; | 
|---|
|  | 98 | paths.resize(k); | 
|---|
|  | 99 | for (int j=0; j<i; ++j){ | 
|---|
|  | 100 | Node n=s; | 
|---|
|  | 101 | OutEdgeIt e; | 
|---|
|  | 102 |  | 
|---|
|  | 103 | while (n!=t){ | 
|---|
|  | 104 |  | 
|---|
|  | 105 |  | 
|---|
|  | 106 | G.first(e,n); | 
|---|
|  | 107 |  | 
|---|
|  | 108 | while (!reversed[e]){ | 
|---|
| [776] | 109 | ++e; | 
|---|
| [610] | 110 | } | 
|---|
|  | 111 | n = G.head(e); | 
|---|
|  | 112 | paths[j].push_back(e); | 
|---|
|  | 113 | //total_length += length[e]; | 
|---|
|  | 114 | reversed[e] = 1-reversed[e]; | 
|---|
|  | 115 | } | 
|---|
|  | 116 |  | 
|---|
|  | 117 | } | 
|---|
|  | 118 | return i; | 
|---|
|  | 119 | } | 
|---|
|  | 120 |  | 
|---|
|  | 121 |  | 
|---|
| [860] | 122 | ///Returns the total length of the paths | 
|---|
| [851] | 123 |  | 
|---|
| [610] | 124 | ///This function gives back the total length of the found paths. | 
|---|
| [851] | 125 | ///\pre \ref run() must | 
|---|
|  | 126 | ///be called before using this function. | 
|---|
| [610] | 127 | Length totalLength(){ | 
|---|
|  | 128 | return mincost_flow.totalLength(); | 
|---|
|  | 129 | } | 
|---|
|  | 130 |  | 
|---|
| [860] | 131 | ///Returns the found flow. | 
|---|
| [851] | 132 |  | 
|---|
|  | 133 | ///This function returns a const reference to the EdgeMap \c flow. | 
|---|
|  | 134 | ///\pre \ref run() must | 
|---|
| [610] | 135 | ///be called before using this function. | 
|---|
|  | 136 | const EdgeIntMap &getFlow() const { return mincost_flow.flow;} | 
|---|
|  | 137 |  | 
|---|
| [860] | 138 | /// Returns the optimal dual solution | 
|---|
| [851] | 139 |  | 
|---|
|  | 140 | ///This function returns a const reference to the NodeMap | 
|---|
|  | 141 | ///\c potential (the dual solution). | 
|---|
| [610] | 142 | /// \pre \ref run() must be called before using this function. | 
|---|
|  | 143 | const EdgeIntMap &getPotential() const { return mincost_flow.potential;} | 
|---|
|  | 144 |  | 
|---|
| [851] | 145 | ///Checks whether the complementary slackness holds. | 
|---|
|  | 146 |  | 
|---|
| [860] | 147 | ///This function checks, whether the given solution is optimal. | 
|---|
|  | 148 | ///It should return true after calling \ref run() | 
|---|
| [851] | 149 | ///Currently this function only checks optimality, | 
|---|
|  | 150 | ///doesn't bother with feasibility | 
|---|
| [860] | 151 | ///It is meant for testing purposes. | 
|---|
| [610] | 152 | /// | 
|---|
|  | 153 | bool checkComplementarySlackness(){ | 
|---|
|  | 154 | return mincost_flow.checkComplementarySlackness(); | 
|---|
|  | 155 | } | 
|---|
|  | 156 |  | 
|---|
| [851] | 157 | ///Read the found paths. | 
|---|
|  | 158 |  | 
|---|
| [610] | 159 | ///This function gives back the \c j-th path in argument p. | 
|---|
|  | 160 | ///Assumes that \c run() has been run and nothing changed since then. | 
|---|
| [851] | 161 | /// \warning It is assumed that \c p is constructed to | 
|---|
|  | 162 | ///be a path of graph \c G. | 
|---|
|  | 163 | ///If \c j is not less than the result of previous \c run, | 
|---|
|  | 164 | ///then the result here will be an empty path (\c j can be 0 as well). | 
|---|
| [860] | 165 | /// | 
|---|
|  | 166 | ///\param Path The type of the path structure to put the result to (must meet hugo path concept). | 
|---|
|  | 167 | ///\param p The path to put the result to | 
|---|
|  | 168 | ///\param j Which path you want to get from the found paths (in a real application you would get the found paths iteratively) | 
|---|
| [851] | 169 | template<typename Path> | 
|---|
|  | 170 | void getPath(Path& p, size_t j){ | 
|---|
| [860] | 171 |  | 
|---|
| [610] | 172 | p.clear(); | 
|---|
|  | 173 | if (j>paths.size()-1){ | 
|---|
|  | 174 | return; | 
|---|
|  | 175 | } | 
|---|
| [853] | 176 | typename Path::Builder B(p); | 
|---|
| [610] | 177 | for(typename std::vector<Edge>::iterator i=paths[j].begin(); | 
|---|
|  | 178 | i!=paths[j].end(); ++i ){ | 
|---|
|  | 179 | B.pushBack(*i); | 
|---|
|  | 180 | } | 
|---|
|  | 181 |  | 
|---|
|  | 182 | B.commit(); | 
|---|
|  | 183 | } | 
|---|
|  | 184 |  | 
|---|
|  | 185 | }; //class MinLengthPaths | 
|---|
|  | 186 |  | 
|---|
|  | 187 | ///@} | 
|---|
|  | 188 |  | 
|---|
|  | 189 | } //namespace hugo | 
|---|
|  | 190 |  | 
|---|
|  | 191 | #endif //HUGO_MINLENGTHPATHS_H | 
|---|