Changeset 806:93246c00cd24 in lemon-0.x for src/hugo
- Timestamp:
- 09/06/04 10:55:06 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1100
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/hugo/skeletons/path.h
r803 r806 1 1 // -*- c++ -*- // 2 3 /**4 @defgroup paths Path Structures5 @ingroup datas6 \brief Path structures implemented in Hugo.7 8 Hugolib provides flexible data structures9 to work with paths.10 11 All of them have the same interface, especially they can be built or extended12 using a standard Builder subclass. This make is easy to have e.g. the Dijkstra13 algorithm to store its result in any kind of path structure.14 15 */16 2 17 3 ///\ingroup paths … … 22 8 #define HUGO_PATH_H 23 9 24 #include <deque>25 #include <vector>26 #include <algorithm>27 28 10 #include <hugo/invalid.h> 29 #include <hugo/error.h>30 #include <debug.h>31 11 32 12 namespace hugo { … … 36 16 37 17 38 //! \brief A s tructure for representing directed pathin a graph.18 //! \brief A skeletom structure for representing directed paths in a graph. 39 19 //! 40 //! A s tructure for representing directed pathin a graph.20 //! A skeleton structure for representing directed paths in a graph. 41 21 //! \param GR The graph type in which the path is. 42 22 //!
Note: See TracChangeset
for help on using the changeset viewer.