equal
deleted
inserted
replaced
1 // -*- c++ -*- |
1 // -*- c++ -*- |
2 #ifndef HUGO_BIPARTITE_GRAPH_WRAPPER_H |
2 #ifndef LEMON_BIPARTITE_GRAPH_WRAPPER_H |
3 #define HUGO_BIPARTITE_GRAPH_WRAPPER_H |
3 #define LEMON_BIPARTITE_GRAPH_WRAPPER_H |
4 |
4 |
5 ///\ingroup gwrappers |
5 ///\ingroup gwrappers |
6 ///\file |
6 ///\file |
7 ///\brief Several graph wrappers. |
7 ///\brief Several graph wrappers. |
8 /// |
8 /// |
9 ///This file contains several useful graph wrapper functions. |
9 ///This file contains several useful graph wrapper functions. |
10 /// |
10 /// |
11 ///\author Marton Makai |
11 ///\author Marton Makai |
12 |
12 |
13 #include <hugo/invalid.h> |
13 #include <lemon/invalid.h> |
14 #include <iter_map.h> |
14 #include <iter_map.h> |
15 #include <hugo/graph_wrapper.h> |
15 #include <lemon/graph_wrapper.h> |
16 #include <for_each_macros.h> |
16 #include <for_each_macros.h> |
17 |
17 |
18 namespace hugo { |
18 namespace lemon { |
19 |
19 |
20 /// \brief A wrapper for composing a bipartite graph from a graph |
20 /// \brief A wrapper for composing a bipartite graph from a graph |
21 /// and from a node-map showing for any node which color class it belongs to. |
21 /// and from a node-map showing for any node which color class it belongs to. |
22 /// |
22 /// |
23 /// A wrapper for composing a bipartite graph. |
23 /// A wrapper for composing a bipartite graph. |
924 |
924 |
925 }; |
925 }; |
926 |
926 |
927 ///@} |
927 ///@} |
928 |
928 |
929 } //namespace hugo |
929 } //namespace lemon |
930 |
930 |
931 |
931 |
932 #endif //HUGO_BIPARTITE_GRAPH_WRAPPER_H |
932 #endif //LEMON_BIPARTITE_GRAPH_WRAPPER_H |
933 |
933 |