lemon/list_graph.h
changeset 2119 4cf25c61ea65
parent 2116 b6a68c15a6a3
child 2123 85c6f5e82108
equal deleted inserted replaced
31:80040d3a2b2c 32:9a07540a3ebc
   312   /// \addtogroup graphs
   312   /// \addtogroup graphs
   313   /// @{
   313   /// @{
   314 
   314 
   315   ///A list graph class.
   315   ///A list graph class.
   316 
   316 
   317   ///This is a simple and fast erasable graph implementation.
   317   ///This is a simple and fast graph implementation.
   318   ///
   318   ///
   319   ///It conforms to the \ref concept::Graph "Graph" concept and it
   319   ///It conforms to the \ref concept::Graph "Graph concept" and it
   320   ///also provides several additional useful extra functionalities.
   320   ///also provides several additional useful extra functionalities.
   321   ///The most of the member functions and nested classes are
   321   ///The most of the member functions and nested classes are
   322   ///documented only in the concept class.
   322   ///documented only in the concept class.
   323   ///\sa concept::Graph.
   323   ///\sa concept::Graph.
   324 
   324 
   715   /// \addtogroup graphs
   715   /// \addtogroup graphs
   716   /// @{
   716   /// @{
   717 
   717 
   718   ///An undirected list graph class.
   718   ///An undirected list graph class.
   719 
   719 
   720   ///This is a simple and fast erasable undirected graph implementation.
   720   ///This is a simple and fast undirected graph implementation.
   721   ///
   721   ///
   722   ///It conforms to the
   722   ///It conforms to the
   723   ///\ref concept::UGraph "UGraph" concept.
   723   ///\ref concept::UGraph "UGraph concept".
   724   ///
   724   ///
   725   ///\sa concept::UGraph.
   725   ///\sa concept::UGraph.
   726   ///
   726   ///
   727   ///\todo Snapshot, reverseEdge(), changeTarget(), changeSource(), contract()
   727   ///\todo Snapshot, reverseEdge(), changeTarget(), changeSource(), contract()
   728   ///haven't been implemented yet.
   728   ///haven't been implemented yet.
  1143   /// \ingroup graphs
  1143   /// \ingroup graphs
  1144   ///
  1144   ///
  1145   /// \brief A smart bipartite undirected graph class.
  1145   /// \brief A smart bipartite undirected graph class.
  1146   ///
  1146   ///
  1147   /// This is a bipartite undirected graph implementation.
  1147   /// This is a bipartite undirected graph implementation.
  1148   /// It is conforms to the \ref concept::ErasableBpUGraph "ErasableBpUGraph" 
  1148   /// It is conforms to the \ref concept::BpUGraph "BpUGraph concept".
  1149   /// concept.
       
  1150   /// \sa concept::BpUGraph.
  1149   /// \sa concept::BpUGraph.
  1151   ///
  1150   ///
  1152   class ListBpUGraph : public ExtendedListBpUGraphBase {};
  1151   class ListBpUGraph : public ExtendedListBpUGraphBase {};
  1153 
  1152 
  1154   
  1153