COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/bfs.h

    r835 r833  
    702702    ///Runs the algorithm to visit all nodes in the digraph.
    703703
    704     ///This method runs the %BFS algorithm in order to visit all nodes
    705     ///in the digraph.
     704    ///This method runs the %BFS algorithm in order to
     705    ///compute the shortest path to each node.
     706    ///
     707    ///The algorithm computes
     708    ///- the shortest path tree (forest),
     709    ///- the distance of each node from the root(s).
    706710    ///
    707711    ///\note <tt>b.run(s)</tt> is just a shortcut of the following code.
     
    10431047    ///Runs BFS algorithm to visit all nodes in the digraph.
    10441048
    1045     ///This method runs BFS algorithm in order to visit all nodes
    1046     ///in the digraph.
     1049    ///This method runs BFS algorithm in order to compute
     1050    ///the shortest path to each node.
    10471051    void run()
    10481052    {
     
    16921696    /// \brief Runs the algorithm to visit all nodes in the digraph.
    16931697    ///
    1694     /// This method runs the %BFS algorithm in order to visit all nodes
    1695     /// in the digraph.
     1698    /// This method runs the %BFS algorithm in order to
     1699    /// compute the shortest path to each node.
     1700    ///
     1701    /// The algorithm computes
     1702    /// - the shortest path tree (forest),
     1703    /// - the distance of each node from the root(s).
    16961704    ///
    16971705    /// \note <tt>b.run(s)</tt> is just a shortcut of the following code.
Note: See TracChangeset for help on using the changeset viewer.