diff -r 7fcc0179fb21 -r 134639e6ea45 lemon/csp.h
--- a/lemon/csp.h Mon Feb 19 19:55:13 2007 +0000
+++ b/lemon/csp.h Tue Feb 20 12:55:37 2007 +0000
@@ -38,7 +38,13 @@
///Algorithms for the Resource Constrained Shortest Path Problem
- ///\e
+ ///The Resource Constrained Shortest (Least Cost) Path problem is the
+ ///following. We are given a directed graph with two additive weightings
+ ///on the edges, referred as \e cost and \e delay. In addition,
+ ///a source and a destination node \e s and \e t and a delay
+ ///constraint \e D is given. A path \e p is called \e feasible
+ ///if delay(p)\<=D. Then, the task is to find the least cost
+ ///feasible path.
///
template,