COIN-OR::LEMON - Graph Library

Ticket #134: 66644b9cd9eb.patch

File 66644b9cd9eb.patch, 1.7 KB (added by Peter Kovacs, 16 years ago)
  • lemon/bfs.h

    # HG changeset patch
    # User Peter Kovacs <kpeter@inf.elte.hu>
    # Date 1220128148 -7200
    # Node ID 66644b9cd9ebca91a7267b7b0aeefcfc490327d4
    # Parent  f0b89f24274560f96db7740ebb807719f5e5e369
    Doc improvement for visitor classes (ticket #134)
    
    diff -r f0b89f242745 -r 66644b9cd9eb lemon/bfs.h
    a b  
    12621262  /// class. It works with callback mechanism, the BfsVisit object calls
    12631263  /// the member functions of the \c Visitor class on every BFS event.
    12641264  ///
     1265  /// This interface of the BFS algorithm should be used in special cases
     1266  /// when extra actions have to be performed in connection with certain
     1267  /// events of the BFS algorithm. Otherwise consider to use Bfs or bfs()
     1268  /// instead.
     1269  ///
    12651270  /// \tparam _Digraph The type of the digraph the algorithm runs on.
    12661271  /// The default value is
    12671272  /// \ref ListDigraph. The value of _Digraph is not used directly by
  • lemon/dfs.h

    diff -r f0b89f242745 -r 66644b9cd9eb lemon/dfs.h
    a b  
    12091209  /// class. It works with callback mechanism, the DfsVisit object calls
    12101210  /// the member functions of the \c Visitor class on every DFS event.
    12111211  ///
     1212  /// This interface of the DFS algorithm should be used in special cases
     1213  /// when extra actions have to be performed in connection with certain
     1214  /// events of the DFS algorithm. Otherwise consider to use Dfs or dfs()
     1215  /// instead.
     1216  ///
    12121217  /// \tparam _Digraph The type of the digraph the algorithm runs on.
    12131218  /// The default value is
    12141219  /// \ref ListDigraph. The value of _Digraph is not used directly by