lemon/path.h
changeset 2085 1970a93dfaa8
parent 2045 012cd0ca3254
child 2247 269a0dcee70b
equal deleted inserted replaced
6:bb6ec444f196 7:e7d54d855747
    14  * express or implied, and with no claim as to its suitability for any
    14  * express or implied, and with no claim as to its suitability for any
    15  * purpose.
    15  * purpose.
    16  *
    16  *
    17  */
    17  */
    18 
    18 
    19 /**
       
    20 @defgroup paths Path Structures
       
    21 @ingroup datas
       
    22 \brief Path structures implemented in LEMON.
       
    23 
       
    24 LEMON provides flexible data structures
       
    25 to work with paths.
       
    26 
       
    27 All of them have the same interface, especially they can be built or extended
       
    28 using a standard Builder subclass. This make is easy to have e.g. the Dijkstra
       
    29 algorithm to store its result in any kind of path structure.
       
    30 
       
    31 \sa lemon::concept::Path
       
    32 
       
    33 */
       
    34 
    19 
    35 ///\ingroup paths
    20 ///\ingroup paths
    36 ///\file
    21 ///\file
    37 ///\brief Classes for representing paths in graphs.
    22 ///\brief Classes for representing paths in graphs.
    38 ///
    23 ///