author | deba |
Mon, 10 Dec 2007 16:34:31 +0000 | |
changeset 2538 | 7bdd328de87a |
parent 2537 | 4a2091b1796a |
child 2539 | c25f62a6452d |
lemon/dijkstra.h | file | annotate | diff | comparison | revisions |
1.1 --- a/lemon/dijkstra.h Mon Dec 10 16:33:37 2007 +0000 1.2 +++ b/lemon/dijkstra.h Mon Dec 10 16:34:31 2007 +0000 1.3 @@ -64,7 +64,7 @@ 1.4 static Value zero() { 1.5 return std::numeric_limits<Value>::max(); 1.6 } 1.7 - /// \brief Gives back the maximum of the given two elements. 1.8 + /// \brief Gives back the minimum of the given two elements. 1.9 static Value plus(const Value& left, const Value& right) { 1.10 return std::min(left, right); 1.11 }