[Lemon-commits] [lemon_svn] deba: r2762 - hugo/trunk/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:55:03 CET 2006
Author: deba
Date: Thu May 18 10:12:54 2006
New Revision: 2762
Modified:
hugo/trunk/lemon/maps.h
Log:
Erasing some code from the examples
Modified: hugo/trunk/lemon/maps.h
==============================================================================
--- hugo/trunk/lemon/maps.h (original)
+++ hugo/trunk/lemon/maps.h Thu May 18 10:12:54 2006
@@ -1094,11 +1094,6 @@
/// vector<UEdge> span_tree_uedges;
/// BackInserterBoolMap<vector<UEdge> > inserter_map(span_tree_uedges);
/// prim(ugraph, cost, inserter_map);
- ///
- /// for (int i = 0; i < (int)span_tree_uedges.size(); ++i) {
- /// std::cout << ugraph.id(ugraph.source(span_tree_uedges[i])) << ' '
- /// << ugraph.id(ugraph.target(span_tree_uedges[i])) << ' '
- /// << cost[span_tree_uedges[i]] << endl;
///\endcode
template <typename Container,
typename Functor =
@@ -1315,9 +1310,6 @@
/// dfs.start();
/// }
/// }
- /// for (NodeIt it(graph); it != INVALID; ++it) {
- /// cout << graph.id(it) << ' ' << order[it] << endl;
- /// }
///\endcode
template <typename Map>
class SettingOrderBoolMap {
More information about the Lemon-commits
mailing list