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>
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;
63 Tolerance<double> tol;
74 typedef typename CM::Key Key;
76 CoMap(CM &c,DM &d) :_cost(c), _delay(d), _lambda(0) {}
77 double lambda() const { return _lambda; }
78 void lambda(double l) { _lambda=l; }
79 Value operator[](Key &e) const
81 return _cost[e]+_lambda*_delay[e];
86 Dijkstra<Graph, CoMap> _dij;
91 ConstrainedShortestPath(Graph &g, CM &cost, DM &delay)
92 : _g(g), _cost(cost), _delay(delay),
93 _co_map(cost,delay), _dij(_g,_co_map) {}
96 ///Compute the cost of a path
97 double cost(const Path &p)
101 for(typename Path::EdgeIt e(p);e!=INVALID;++e) s+=_cost[e];
105 ///Compute the delay of a path
106 double delay(const Path &p)
109 for(typename Path::EdgeIt e(p);e!=INVALID;++e) s+=_delay[e];
113 ///Runs the LARAC algorithm
115 ///This function runs a Lagrange relaxation based heuristic to find
116 ///a delay constrained least cost path.
117 ///\param s source node
118 ///\param t target node
119 ///\retval lo_bo a lower bound on the optimal solution
120 ///\return the found path or an empty
121 Path larac(Node s, Node t, double delta, double &lo_bo)
123 NoCounter cnt("LARAC iterations: ");
125 double cp,cq,dp,dq,cr,dr;
130 Dijkstra<Graph,CM> dij(_g,_cost);
133 if(!dij.reached(t)) return Path();
138 if(delay(p)<=delta) return p;
140 Dijkstra<Graph,DM> dij(_g,_delay);
147 if(delay(q)>delta) return Path();
149 lambda=(cp-cq)/(dq-dp);
150 _co_map.lambda(lambda);
156 if(!tol.less(cr+lambda*dr,cp+lambda*dp)) {
157 lo_bo=cq+lambda*(dq-delta);
160 else if(tol.less(dr,delta))
166 else if(tol.less(delta,dr))
178 } //END OF NAMESPACE LEMON