equal
deleted
inserted
replaced
16 * |
16 * |
17 */ |
17 */ |
18 |
18 |
19 /// \ingroup graph_concepts |
19 /// \ingroup graph_concepts |
20 /// \file |
20 /// \file |
21 /// \brief Undirected bipartite graphs and components of. |
21 /// \brief The concept of Bipartite Undirected Graphs. |
22 |
|
23 |
22 |
24 #ifndef LEMON_CONCEPT_BPUGRAPH_H |
23 #ifndef LEMON_CONCEPT_BPUGRAPH_H |
25 #define LEMON_CONCEPT_BPUGRAPH_H |
24 #define LEMON_CONCEPT_BPUGRAPH_H |
26 |
25 |
27 #include <lemon/concepts/graph_components.h> |
26 #include <lemon/concepts/graph_components.h> |
34 namespace lemon { |
33 namespace lemon { |
35 namespace concepts { |
34 namespace concepts { |
36 |
35 |
37 /// \addtogroup graph_concepts |
36 /// \addtogroup graph_concepts |
38 /// @{ |
37 /// @{ |
39 |
38 /// |
40 |
|
41 /// \brief Class describing the concept of Bipartite Undirected Graphs. |
39 /// \brief Class describing the concept of Bipartite Undirected Graphs. |
42 /// |
40 /// |
43 /// This class describes the common interface of all |
41 /// This class describes the common interface of all |
44 /// Undirected Bipartite Graphs. |
42 /// Undirected Bipartite Graphs. |
45 /// |
43 /// |