Changeset 921:818510fa3d99 in lemon-0.x for src/lemon/path.h
- Timestamp:
- 09/29/04 17:30:04 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1232
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
src/lemon/path.h
r906 r921 1 1 /* -*- C++ -*- 2 * src/ hugo/path.h - Part of HUGOlib, a generic C++ optimization library2 * src/lemon/path.h - Part of LEMON, a generic C++ optimization library 3 3 * 4 4 * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport … … 18 18 @defgroup paths Path Structures 19 19 @ingroup datas 20 \brief Path structures implemented in Hugo.21 22 Hugolibprovides flexible data structures20 \brief Path structures implemented in LEMON. 21 22 LEMON provides flexible data structures 23 23 to work with paths. 24 24 … … 27 27 algorithm to store its result in any kind of path structure. 28 28 29 \sa hugo::skeleton::Path29 \sa lemon::skeleton::Path 30 30 31 31 */ … … 35 35 ///\brief Classes for representing paths in graphs. 36 36 37 #ifndef HUGO_PATH_H38 #define HUGO_PATH_H37 #ifndef LEMON_PATH_H 38 #define LEMON_PATH_H 39 39 40 40 #include <deque> … … 42 42 #include <algorithm> 43 43 44 #include < hugo/invalid.h>45 46 namespace hugo{44 #include <lemon/invalid.h> 45 46 namespace lemon { 47 47 48 48 /// \addtogroup paths … … 705 705 ///@} 706 706 707 } // namespace hugo708 709 #endif // HUGO_PATH_H707 } // namespace lemon 708 709 #endif // LEMON_PATH_H
Note: See TracChangeset
for help on using the changeset viewer.