Changeset 921:818510fa3d99 in lemon-0.x for src/work/deba
- 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/deba
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/deba/array_map_factory.h
r703 r921 7 7 #include "extended_pair.h" 8 8 9 namespace hugo{9 namespace lemon { 10 10 11 11 template <typename MapRegistry> class ArrayMapFactory { -
src/work/deba/bin_heap.h
r698 r921 59 59 60 60 61 #ifndef HUGO_BIN_HEAP_H62 #define HUGO_BIN_HEAP_H61 #ifndef LEMON_BIN_HEAP_H 62 #define LEMON_BIN_HEAP_H 63 63 64 64 ///\ingroup auxdat … … 70 70 #include <functional> 71 71 72 namespace hugo{72 namespace lemon { 73 73 74 74 /// \addtogroup auxdat … … 242 242 ///@} 243 243 244 } // namespace hugo244 } // namespace lemon 245 245 246 246 #endif // BIN_HEAP_HH -
src/work/deba/dijkstra.h
r880 r921 1 1 // -*- C++ -*- 2 #ifndef HUGO_DIJKSTRA_H3 #define HUGO_DIJKSTRA_H2 #ifndef LEMON_DIJKSTRA_H 3 #define LEMON_DIJKSTRA_H 4 4 5 5 ///\ingroup galgs … … 7 7 ///\brief Dijkstra algorithm. 8 8 9 #include < hugo/bin_heap.h>10 #include < hugo/invalid.h>11 12 namespace hugo{9 #include <lemon/bin_heap.h> 10 #include <lemon/invalid.h> 11 12 namespace lemon { 13 13 14 14 /// \addtogroup galgs … … 323 323 /// @} 324 324 325 } //END OF NAMESPACE HUGO325 } //END OF NAMESPACE LEMON 326 326 327 327 #endif -
src/work/deba/invalid.h
r701 r921 1 1 // -*- mode:C++ -*- 2 2 3 #ifndef HUGO_INVALID_H4 #define HUGO_INVALID_H3 #ifndef LEMON_INVALID_H 4 #define LEMON_INVALID_H 5 5 6 6 ///\file 7 7 ///\brief Definition of INVALID. 8 8 9 namespace hugo{9 namespace lemon { 10 10 11 11 /// Dummy type to make it easier to make invalid iterators. … … 33 33 const Invalid INVALID = Invalid(); 34 34 35 } //namespace hugo35 } //namespace lemon 36 36 37 37 #endif -
src/work/deba/list_graph.h
r880 r921 1 1 // -*- mode:C++ -*- 2 2 3 #ifndef HUGO_LIST_GRAPH_H4 #define HUGO_LIST_GRAPH_H3 #ifndef LEMON_LIST_GRAPH_H 4 #define LEMON_LIST_GRAPH_H 5 5 6 6 ///\ingroup graphs … … 18 18 #include "map_defines.h" 19 19 20 namespace hugo{20 namespace lemon { 21 21 22 22 /// \addtogroup graphs … … 397 397 } 398 398 399 #endif // HUGO_LIST_GRAPH_H399 #endif //LEMON_LIST_GRAPH_H -
src/work/deba/map_registry.h
r703 r921 6 6 using namespace std; 7 7 8 namespace hugo{8 namespace lemon { 9 9 10 10 /** -
src/work/deba/pac_map_factory.h
r595 r921 9 9 */ 10 10 11 namespace hugo{11 namespace lemon { 12 12 13 13 template <typename G, typename K, typename KIt, template <typename, typename> class PAC> -
src/work/deba/vector_map_factory.h
r703 r921 7 7 #include "extended_pair.h" 8 8 9 namespace hugo{9 namespace lemon { 10 10 11 11 /** The VectorMapFactory template class is a factory class
Note: See TracChangeset
for help on using the changeset viewer.