lemon/maps.h
changeset 2093 ff241247e157
parent 2091 c8ccc1f8fd51
child 2248 1ac928089d68
     1.1 --- a/lemon/maps.h	Thu May 18 08:04:51 2006 +0000
     1.2 +++ b/lemon/maps.h	Thu May 18 08:12:54 2006 +0000
     1.3 @@ -1094,11 +1094,6 @@
     1.4    /// vector<UEdge> span_tree_uedges;
     1.5    /// BackInserterBoolMap<vector<UEdge> > inserter_map(span_tree_uedges);
     1.6    /// prim(ugraph, cost, inserter_map);
     1.7 -  ///
     1.8 -  /// for (int i = 0; i < (int)span_tree_uedges.size(); ++i) {
     1.9 -  /// std::cout << ugraph.id(ugraph.source(span_tree_uedges[i])) << ' '
    1.10 -  ///           << ugraph.id(ugraph.target(span_tree_uedges[i])) << ' '
    1.11 -  ///           << cost[span_tree_uedges[i]] << endl;
    1.12    ///\endcode
    1.13    template <typename Container,
    1.14              typename Functor =
    1.15 @@ -1315,9 +1310,6 @@
    1.16    ///     dfs.start();
    1.17    ///   }
    1.18    /// }
    1.19 -  /// for (NodeIt it(graph); it != INVALID; ++it) {
    1.20 -  ///   cout << graph.id(it) << ' ' << order[it] << endl;
    1.21 -  /// }
    1.22    ///\endcode
    1.23    template <typename Map>
    1.24    class SettingOrderBoolMap {