Changeset 959:c80ef5912903 in lemon-0.x for src/work/peter/path
- Timestamp:
- 11/04/04 21:24:59 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1342
- Location:
- src/work/peter/path
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/peter/path/path.h
r921 r959 13 13 algorithm to store its result in any kind of path structure. 14 14 15 \sa lemon:: skeleton::Path15 \sa lemon::concept::Path 16 16 17 17 */ -
src/work/peter/path/path_skeleton.h
r921 r959 2 2 // -*- c++ -*- // 3 3 4 ///\ingroup skeletons4 ///\ingroup concept 5 5 ///\file 6 6 ///\brief Classes for representing paths in graphs. … … 12 12 13 13 namespace lemon { 14 namespace skeleton{15 /// \addtogroup skeletons14 namespace concept { 15 /// \addtogroup concept 16 16 /// @{ 17 17 18 18 19 //! \brief A skeleto mstructure for representing directed paths in a graph.19 //! \brief A skeleton structure for representing directed paths in a graph. 20 20 //! 21 21 //! A skeleton structure for representing directed paths in a graph. … … 86 86 * \brief Iterator class to iterate on the edges of the paths 87 87 * 88 * \ingroup skeletons88 * \ingroup concept 89 89 * This class is used to iterate on the edges of the paths 90 90 * … … 119 119 * \brief Iterator class to iterate on the nodes of the paths 120 120 * 121 * \ingroup skeletons121 * \ingroup concept 122 122 * This class is used to iterate on the nodes of the paths 123 123 * … … 154 154 * \brief Class to build paths 155 155 * 156 * \ingroup skeletons156 * \ingroup concept 157 157 * This class is used to fill a path with edges. 158 158 * -
src/work/peter/path/path_test.cc
r921 r959 7 7 using namespace std; 8 8 using namespace lemon; 9 using namespace skeleton;9 using namespace concept; 10 10 11 11 bool passed = true;
Note: See TracChangeset
for help on using the changeset viewer.