COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/dfs.h

    r835 r833  
    634634    ///Runs the algorithm to visit all nodes in the digraph.
    635635
    636     ///This method runs the %DFS algorithm in order to visit all nodes
    637     ///in the digraph.
     636    ///This method runs the %DFS algorithm in order to compute the
     637    ///%DFS path to each node.
     638    ///
     639    ///The algorithm computes
     640    ///- the %DFS tree (forest),
     641    ///- the distance of each node from the root(s) in the %DFS tree.
    638642    ///
    639643    ///\note <tt>d.run()</tt> is just a shortcut of the following code.
     
    973977    ///Runs DFS algorithm to visit all nodes in the digraph.
    974978
    975     ///This method runs DFS algorithm in order to visit all nodes
    976     ///in the digraph.
     979    ///This method runs DFS algorithm in order to compute
     980    ///the DFS path to each node.
    977981    void run()
    978982    {
     
    15751579    /// \brief Runs the algorithm to visit all nodes in the digraph.
    15761580
    1577     /// This method runs the %DFS algorithm in order to visit all nodes
    1578     /// in the digraph.
     1581    /// This method runs the %DFS algorithm in order to
     1582    /// compute the %DFS path to each node.
     1583    ///
     1584    /// The algorithm computes
     1585    /// - the %DFS tree (forest),
     1586    /// - the distance of each node from the root(s) in the %DFS tree.
    15791587    ///
    15801588    /// \note <tt>d.run()</tt> is just a shortcut of the following code.
Note: See TracChangeset for help on using the changeset viewer.