Changeset 921:818510fa3d99 in lemon-0.x for src/work/peter
- Timestamp:
- 09/29/04 17:30:04 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1232
- Location:
- src/work/peter
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/peter/edgepathgraph.h
r880 r921 1 1 // -*- c++ -*- 2 #ifndef HUGO_NET_GRAPH_H3 #define HUGO_NET_GRAPH_H2 #ifndef LEMON_NET_GRAPH_H 3 #define LEMON_NET_GRAPH_H 4 4 5 5 ///\file 6 6 ///\brief Declaration of EdgePathGraph. 7 7 8 #include < hugo/invalid.h>9 #include < hugo/maps.h>10 11 /// The namespace of HugoLib12 namespace hugo{8 #include <lemon/invalid.h> 9 #include <lemon/maps.h> 10 11 /// The namespace of LEMON 12 namespace lemon { 13 13 14 14 // @defgroup empty_graph The EdgePathGraph class … … 402 402 // @} 403 403 404 } //namespace hugo405 406 407 #endif // HUGO_SKELETON_GRAPH_H404 } //namespace lemon 405 406 407 #endif // LEMON_SKELETON_GRAPH_H -
src/work/peter/edgepathgraph_test.cc
r677 r921 4 4 5 5 #include "edgepathgraph.h" 6 #include < hugo/list_graph.h>7 #include < hugo/smart_graph.h>6 #include <lemon/list_graph.h> 7 #include <lemon/smart_graph.h> 8 8 #include <path.h> 9 9 10 using namespace hugo;10 using namespace lemon; 11 11 using namespace std; 12 12 -
src/work/peter/hierarchygraph.h
r880 r921 1 1 // -*- c++ -*- 2 #ifndef HUGO_NET_GRAPH_H3 #define HUGO_NET_GRAPH_H2 #ifndef LEMON_NET_GRAPH_H 3 #define LEMON_NET_GRAPH_H 4 4 5 5 ///\file 6 6 ///\brief Declaration of HierarchyGraph. 7 7 8 #include < hugo/invalid.h>9 #include < hugo/maps.h>10 11 /// The namespace of HugoLib12 namespace hugo8 #include <lemon/invalid.h> 9 #include <lemon/maps.h> 10 11 /// The namespace of LEMON 12 namespace lemon 13 13 { 14 14 … … 576 576 // @} 577 577 578 } //namespace hugo579 580 581 #endif // HUGO_SKELETON_GRAPH_H578 } //namespace lemon 579 580 581 #endif // LEMON_SKELETON_GRAPH_H -
src/work/peter/hierarchygraph_test.cc
r690 r921 4 4 5 5 #include "hierarchygraph.h" 6 #include < hugo/list_graph.h>7 #include < hugo/smart_graph.h>6 #include <lemon/list_graph.h> 7 #include <lemon/smart_graph.h> 8 8 #include <path.h> 9 9 10 using namespace hugo;10 using namespace lemon; 11 11 using namespace std; 12 12 -
src/work/peter/path/debug.h
r815 r921 1 1 // -*- C++ -*- // 2 2 3 #ifndef HUGO_DEBUG_H4 #define HUGO_DEBUG_H3 #ifndef LEMON_DEBUG_H 4 #define LEMON_DEBUG_H 5 5 6 6 //! \file 7 7 //! \brief Basic definitions for debug control. 8 8 9 namespace hugo{9 namespace lemon { 10 10 11 11 //! Debug mode for testing/debugging … … 54 54 55 55 } 56 #endif // HUGO_DEBUG_H56 #endif // LEMON_DEBUG_H -
src/work/peter/path/path.h
r815 r921 4 4 @defgroup paths Path Structures 5 5 @ingroup datas 6 \brief Path structures implemented in Hugo.7 8 Hugolibprovides flexible data structures6 \brief Path structures implemented in LEMON. 7 8 LEMON provides flexible data structures 9 9 to work with paths. 10 10 … … 13 13 algorithm to store its result in any kind of path structure. 14 14 15 \sa hugo::skeleton::Path15 \sa lemon::skeleton::Path 16 16 17 17 */ … … 21 21 ///\brief Classes for representing paths in graphs. 22 22 23 #ifndef HUGO_PATH_H24 #define HUGO_PATH_H23 #ifndef LEMON_PATH_H 24 #define LEMON_PATH_H 25 25 26 26 #include <deque> … … 28 28 #include <algorithm> 29 29 30 #include < hugo/invalid.h>31 #include < hugo/error.h>30 #include <lemon/invalid.h> 31 #include <lemon/error.h> 32 32 #include <debug.h> 33 33 34 namespace hugo{34 namespace lemon { 35 35 36 36 /// \addtogroup paths … … 1170 1170 ///@} 1171 1171 1172 } // namespace hugo1173 1174 #endif // HUGO_PATH_H1172 } // namespace lemon 1173 1174 #endif // LEMON_PATH_H -
src/work/peter/path/path_skeleton.h
r815 r921 6 6 ///\brief Classes for representing paths in graphs. 7 7 8 #ifndef HUGO_PATH_H9 #define HUGO_PATH_H10 11 #include < hugo/invalid.h>12 13 namespace hugo{8 #ifndef LEMON_PATH_H 9 #define LEMON_PATH_H 10 11 #include <lemon/invalid.h> 12 13 namespace lemon { 14 14 namespace skeleton { 15 15 /// \addtogroup skeletons … … 219 219 } 220 220 221 } // namespace hugo222 223 #endif // HUGO_PATH_H221 } // namespace lemon 222 223 #endif // LEMON_PATH_H -
src/work/peter/path/path_test.cc
r815 r921 6 6 7 7 using namespace std; 8 using namespace hugo;8 using namespace lemon; 9 9 using namespace skeleton; 10 10
Note: See TracChangeset
for help on using the changeset viewer.