equal
deleted
inserted
replaced
1 // -*- c++ -*- |
1 // -*- c++ -*- |
2 #ifndef HUGO_GRAPH_WRAPPER_H |
2 #ifndef LEMON_GRAPH_WRAPPER_H |
3 #define HUGO_GRAPH_WRAPPER_H |
3 #define LEMON_GRAPH_WRAPPER_H |
4 |
4 |
5 #include <invalid.h> |
5 #include <invalid.h> |
6 #include <iter_map.h> |
6 #include <iter_map.h> |
7 |
7 |
8 namespace hugo { |
8 namespace lemon { |
9 |
9 |
10 // Graph wrappers |
10 // Graph wrappers |
11 |
11 |
12 /// \addtogroup gwrappers |
12 /// \addtogroup gwrappers |
13 /// A main parts of HUGOlib are the different graph structures, |
13 /// A main parts of LEMON are the different graph structures, |
14 /// generic graph algorithms, graph concepts which couple these, and |
14 /// generic graph algorithms, graph concepts which couple these, and |
15 /// graph wrappers. While the previous ones are more or less clear, the |
15 /// graph wrappers. While the previous ones are more or less clear, the |
16 /// latter notion needs further explanation. |
16 /// latter notion needs further explanation. |
17 /// Graph wrappers are graph classes which serve for considering graph |
17 /// Graph wrappers are graph classes which serve for considering graph |
18 /// structures in different ways. A short example makes the notion much |
18 /// structures in different ways. A short example makes the notion much |
1644 |
1644 |
1645 }; |
1645 }; |
1646 |
1646 |
1647 ///@} |
1647 ///@} |
1648 |
1648 |
1649 } //namespace hugo |
1649 } //namespace lemon |
1650 |
1650 |
1651 |
1651 |
1652 #endif //HUGO_GRAPH_WRAPPER_H |
1652 #endif //LEMON_GRAPH_WRAPPER_H |
1653 |
1653 |