3 * This file is a part of LEMON, a generic C++ optimization library
5 * Copyright (C) 2003-2006
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>
39 ///Algorithms for the Resource Constrained Shortest Path Problem
41 ///The Resource Constrained Shortest (Least Cost) Path problem is the
42 ///following. We are given a directed graph with two additive weightings
43 ///on the edges, referred as \e cost and \e delay. In addition,
44 ///a source and a destination node \e s and \e t and a delay
45 ///constraint \e D is given. A path \e p is called \e feasible
46 ///if <em>delay(p)\<=D</em>. Then, the task is to find the least cost
50 class CM=typename Graph:: template EdgeMap<double>,
52 class ConstrainedShortestPath
56 GRAPH_TYPEDEFS(typename Graph);
58 typedef SimplePath<Graph> Path;
61 Tolerance<double> tol;
72 typedef typename CM::Key Key;
74 CoMap(CM &c,DM &d) :_cost(c), _delay(d), _lambda(0) {}
75 double lambda() const { return _lambda; }
76 void lambda(double l) { _lambda=l; }
77 Value operator[](Key &e) const
79 return _cost[e]+_lambda*_delay[e];
84 Dijkstra<Graph, CoMap> _dij;
89 ConstrainedShortestPath(Graph &g, CM &cost, DM &delay)
90 : _g(g), _cost(cost), _delay(delay),
91 _co_map(cost,delay), _dij(_g,_co_map) {}
94 ///Compute the cost of a path
95 double cost(const Path &p)
99 for(typename Path::EdgeIt e(p);e!=INVALID;++e) s+=_cost[e];
103 ///Compute the delay of a path
104 double delay(const Path &p)
107 for(typename Path::EdgeIt e(p);e!=INVALID;++e) s+=_delay[e];
111 ///Runs the LARAC algorithm
113 ///This function runs a Lagrange relaxation based heuristic to find
114 ///a delay constrained least cost path.
115 ///\param s source node
116 ///\param t target node
117 ///\retval lo_bo a lower bound on the optimal solution
118 ///\return the found path or an empty
119 Path larac(Node s, Node t, double delta, double &lo_bo)
121 NoCounter cnt("LARAC iterations: ");
123 double cp,cq,dp,dq,cr,dr;
128 Dijkstra<Graph,CM> dij(_g,_cost);
131 if(!dij.reached(t)) return Path();
136 if(delay(p)<=delta) return p;
138 Dijkstra<Graph,DM> dij(_g,_delay);
145 if(delay(q)>delta) return Path();
147 lambda=(cp-cq)/(dq-dp);
148 _co_map.lambda(lambda);
154 if(!tol.less(cr+lambda*dr,cp+lambda*dp)) {
155 lo_bo=cq+lambda*(dq-delta);
158 else if(tol.less(dr,delta))
164 else if(tol.less(delta,dr))
176 } //END OF NAMESPACE LEMON