src/work/marci/bipartite_graph_wrapper.h
changeset 921 818510fa3d99
parent 902 309d81806228
child 986 e997802b855c
equal deleted inserted replaced
15:07a4e8b14642 16:9851dfe74b05
     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