COIN-OR::LEMON - Graph Library

Changeset 2490:31a93dd6f714 in lemon-0.x for lemon/bfs.h


Ignore:
Timestamp:
10/09/07 18:22:04 (17 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3329
Message:

Minor bug fixes in documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/bfs.h

    r2476 r2490  
    152152    ///The type of the underlying graph.
    153153    typedef typename TR::Graph Graph;
    154     ///\e
    155     typedef typename Graph::Node Node;
    156     ///\e
    157     typedef typename Graph::NodeIt NodeIt;
    158     ///\e
    159     typedef typename Graph::Edge Edge;
    160     ///\e
    161     typedef typename Graph::OutEdgeIt OutEdgeIt;
    162154   
    163155    ///\brief The type of the map that stores the last
     
    171163    typedef typename TR::DistMap DistMap;
    172164  private:
     165
     166    typedef typename Graph::Node Node;
     167    typedef typename Graph::NodeIt NodeIt;
     168    typedef typename Graph::Edge Edge;
     169    typedef typename Graph::OutEdgeIt OutEdgeIt;
     170
    173171    /// Pointer to the underlying graph.
    174172    const Graph *G;
     
    237235      }
    238236    };
    239     ///\ref named-templ-param "Named parameter" for setting PredMap type
    240 
     237    ///\brief \ref named-templ-param "Named parameter" for setting
     238    ///PredMap type
     239    ///
    241240    ///\ref named-templ-param "Named parameter" for setting PredMap type
    242241    ///
     
    254253      }
    255254    };
    256     ///\ref named-templ-param "Named parameter" for setting DistMap type
    257 
     255    ///\brief \ref named-templ-param "Named parameter" for setting
     256    ///DistMap type
     257    ///
    258258    ///\ref named-templ-param "Named parameter" for setting DistMap type
    259259    ///
     
    271271      }
    272272    };
    273     ///\ref named-templ-param "Named parameter" for setting ReachedMap type
    274 
     273    ///\brief \ref named-templ-param "Named parameter" for setting
     274    ///ReachedMap type
     275    ///
    275276    ///\ref named-templ-param "Named parameter" for setting ReachedMap type
    276277    ///
     
    288289      }
    289290    };
    290     ///\ref named-templ-param "Named parameter" for setting ProcessedMap type
    291 
     291    ///\brief \ref named-templ-param "Named parameter" for setting
     292    ///ProcessedMap type
     293    ///
    292294    ///\ref named-templ-param "Named parameter" for setting ProcessedMap type
    293295    ///
     
    422424    ///@{
    423425
    424     ///Initializes the internal data structures.
    425 
     426    ///\brief Initializes the internal data structures.
     427    ///
    426428    ///Initializes the internal data structures.
    427429    ///
     
    11021104  /// \brief Visitor class for bfs.
    11031105  /// 
    1104   /// It gives a simple interface for a functional interface for bfs
    1105   /// traversal. The traversal on a linear data structure.
     1106  /// This class defines the interface of the BfsVisit events, and
     1107  /// it could be the base of a real Visitor class.
    11061108  template <typename _Graph>
    11071109  struct BfsVisitor {
     
    11881190
    11891191  };
    1190  
    1191   /// %BFS Visit algorithm class.
    1192  
     1192
    11931193  /// \ingroup search
     1194  /// 
     1195  /// \brief %BFS Visit algorithm class.
     1196  /// 
    11941197  /// This class provides an efficient implementation of the %BFS algorithm
    11951198  /// with visitor interface.
Note: See TracChangeset for help on using the changeset viewer.