COIN-OR::LEMON - Graph Library

Changeset 959:c80ef5912903 in lemon-0.x for src/work/peter


Ignore:
Timestamp:
11/04/04 21:24:59 (19 years ago)
Author:
Mihaly Barasz
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1342
Message:

skeleton(s) -> concept renaming

Location:
src/work/peter/path
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/work/peter/path/path.h

    r921 r959  
    1313algorithm to store its result in any kind of path structure.
    1414
    15 \sa lemon::skeleton::Path
     15\sa lemon::concept::Path
    1616
    1717*/
  • src/work/peter/path/path_skeleton.h

    r921 r959  
    22// -*- c++ -*- //
    33
    4 ///\ingroup skeletons
     4///\ingroup concept
    55///\file
    66///\brief Classes for representing paths in graphs.
     
    1212
    1313namespace lemon {
    14   namespace skeleton {
    15     /// \addtogroup skeletons
     14  namespace concept {
     15    /// \addtogroup concept
    1616    /// @{
    1717   
    1818   
    19     //! \brief A skeletom structure for representing directed paths in a graph.
     19    //! \brief A skeleton structure for representing directed paths in a graph.
    2020    //!
    2121    //! A skeleton structure for representing directed paths in a graph.
     
    8686       * \brief Iterator class to iterate on the edges of the paths
    8787       *
    88        * \ingroup skeletons
     88       * \ingroup concept
    8989       * This class is used to iterate on the edges of the paths
    9090       *
     
    119119       * \brief Iterator class to iterate on the nodes of the paths
    120120       *
    121        * \ingroup skeletons
     121       * \ingroup concept
    122122       * This class is used to iterate on the nodes of the paths
    123123       *
     
    154154       * \brief Class to build paths
    155155       *
    156        * \ingroup skeletons
     156       * \ingroup concept
    157157       * This class is used to fill a path with edges.
    158158       *
  • src/work/peter/path/path_test.cc

    r921 r959  
    77using namespace std;
    88using namespace lemon;
    9 using namespace skeleton;
     9using namespace concept;
    1010
    1111bool passed = true;
Note: See TracChangeset for help on using the changeset viewer.