3 * This file is a part of LEMON, a generic C++ optimization library
5 * Copyright (C) 2003-2007
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
9 * Permission to use, modify and distribute this software is granted
10 * provided that this copyright notice appears in all copies. For
11 * precise terms see the accompanying LICENSE file.
13 * This software is provided "AS IS" with no warranty of any kind,
14 * express or implied, and with no claim as to its suitability for any
24 ///\brief Algorithm for the Resource Constrained Shortest Path problem.
27 ///\todo dijkstraZero() solution should be revised.
29 #include <lemon/list_graph.h>
30 #include <lemon/graph_utils.h>
31 #include <lemon/error.h>
32 #include <lemon/maps.h>
33 #include <lemon/tolerance.h>
34 #include <lemon/dijkstra.h>
35 #include <lemon/path.h>
36 #include <lemon/counter.h>
41 ///Algorithms for the Resource Constrained Shortest Path Problem
43 ///The Resource Constrained Shortest (Least Cost) Path problem is the
44 ///following. We are given a directed graph with two additive weightings
45 ///on the edges, referred as \e cost and \e delay. In addition,
46 ///a source and a destination node \e s and \e t and a delay
47 ///constraint \e D is given. A path \e p is called \e feasible
48 ///if <em>delay(p)\<=D</em>. Then, the task is to find the least cost
52 class CM=typename Graph:: template EdgeMap<double>,
54 class ConstrainedShortestPath
58 GRAPH_TYPEDEFS(typename Graph);
60 typedef SimplePath<Graph> Path;
65 Tolerance<double> tol;
76 typedef typename CM::Key Key;
78 CoMap(const CM &c, const DM &d) :_cost(c), _delay(d), _lambda(0) {}
79 double lambda() const { return _lambda; }
80 void lambda(double l) { _lambda=l; }
81 Value operator[](Key &e) const
83 return _cost[e]+_lambda*_delay[e];
90 Dijkstra<Graph, CoMap> _dij;
98 ConstrainedShortestPath(const Graph &g, const CM &ct, const DM &dl)
99 : _g(g), _cost(ct), _delay(dl),
100 _co_map(ct, dl), _dij(_g,_co_map) {}
103 ///Compute the cost of a path
104 double cost(const Path &p) const
108 for(typename Path::EdgeIt e(p);e!=INVALID;++e) s+=_cost[e];
112 ///Compute the delay of a path
113 double delay(const Path &p) const
116 for(typename Path::EdgeIt e(p);e!=INVALID;++e) s+=_delay[e];
120 ///Runs the LARAC algorithm
122 ///This function runs a Lagrange relaxation based heuristic to find
123 ///a delay constrained least cost path.
124 ///\param s source node
125 ///\param t target node
126 ///\retval lo_bo a lower bound on the optimal solution
127 ///\return the found path or an empty
128 Path larac(Node s, Node t, double delta, double &lo_bo)
130 NoCounter cnt("LARAC iterations: ");
132 double cp,cq,dp,dq,cr,dr;
137 Dijkstra<Graph,CM> dij(_g,_cost);
140 if(!dij.reached(t)) return Path();
145 if(delay(p)<=delta) return p;
147 Dijkstra<Graph,DM> dij(_g,_delay);
154 if(delay(q)>delta) return Path();
156 lambda=(cp-cq)/(dq-dp);
157 _co_map.lambda(lambda);
163 if(!tol.less(cr+lambda*dr,cp+lambda*dp)) {
164 lo_bo=cq+lambda*(dq-delta);
167 else if(tol.less(dr,delta))
173 else if(tol.less(delta,dr))
185 } //END OF NAMESPACE LEMON