[Lemon-commits] [lemon_svn] deba: r2438 - hugo/trunk/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:52:37 CET 2006
Author: deba
Date: Mon Dec 19 10:47:10 2005
New Revision: 2438
Modified:
hugo/trunk/lemon/dfs.h
hugo/trunk/lemon/floyd_warshall.h
Log:
Doc fix
Modified: hugo/trunk/lemon/dfs.h
==============================================================================
--- hugo/trunk/lemon/dfs.h (original)
+++ hugo/trunk/lemon/dfs.h Mon Dec 19 10:47:10 2005
@@ -559,8 +559,8 @@
///\pre init() must be called and at least one node should be added
///with addSource() before using this function.
///
- ///\param nm must be a bool (or convertible) edge map. The algorithm
- ///will stop when it reaches an edge \c e with <tt>nm[e]==true</tt>.
+ ///\param em must be a bool (or convertible) edge map. The algorithm
+ ///will stop when it reaches an edge \c e with \code em[e]==true \endcode.
///
///\warning Contrary to \ref Dfs and \ref Dijkstra, \c em is an edge map,
///not a node map.
@@ -1144,7 +1144,7 @@
/// \brief Instantiates a ReachedMap.
///
/// This function instantiates a \ref ReachedMap.
- /// \param G is the graph, to which
+ /// \param graph is the graph, to which
/// we would like to define the \ref ReachedMap.
static ReachedMap *createReachedMap(const Graph &graph) {
return new ReachedMap(graph);
@@ -1427,8 +1427,8 @@
/// \pre init() must be called and at least one node should be added
/// with addSource() before using this function.
///
- /// \param nm must be a bool (or convertible) edge map. The algorithm
- /// will stop when it reaches an edge \c e with <tt>nm[e]==true</tt>.
+ /// \param em must be a bool (or convertible) edge map. The algorithm
+ /// will stop when it reaches an edge \c e with \code nm[e]==true \endcode.
///
/// \warning Contrary to \ref Dfs and \ref Dijkstra, \c em is an edge map,
/// not a node map.
Modified: hugo/trunk/lemon/floyd_warshall.h
==============================================================================
--- hugo/trunk/lemon/floyd_warshall.h (original)
+++ hugo/trunk/lemon/floyd_warshall.h Mon Dec 19 10:47:10 2005
@@ -98,7 +98,7 @@
// The type of the length of the edges.
typedef typename _LengthMap::Value Value;
- /// \brief Operation traits for belmann-ford algorithm.
+ /// \brief Operation traits for floyd-warshall algorithm.
///
/// It defines the infinity type on the given Value type
/// and the used operation.
More information about the Lemon-commits
mailing list