src/work/jacint/max_matching.h
changeset 967 6563019430ba
parent 682 1ea8162ce638
child 986 e997802b855c
equal deleted inserted replaced
3:06c6460cea81 4:c154a5f8fd93
     1 // -*- C++ -*-
     1 // -*- C++ -*-
     2 #ifndef HUGO_MAX_MATCHING_H
     2 #ifndef LEMON_MAX_MATCHING_H
     3 #define HUGO_MAX_MATCHING_H
     3 #define LEMON_MAX_MATCHING_H
     4 
     4 
     5 ///\ingroup galgs
     5 ///\ingroup galgs
     6 ///\file
     6 ///\file
     7 ///\brief Maximum matching algorithm.
     7 ///\brief Maximum matching algorithm.
     8 
     8 
     9 #include <queue>
     9 #include <queue>
    10 
    10 
    11 #include <invalid.h>
    11 #include <invalid.h>
    12 #include <unionfind.h>
    12 #include <unionfind.h>
    13 
    13 
    14 namespace hugo {
    14 namespace lemon {
    15 
    15 
    16   /// \addtogroup galgs
    16   /// \addtogroup galgs
    17   /// @{
    17   /// @{
    18 
    18 
    19   ///Maximum matching algorithms class.
    19   ///Maximum matching algorithms class.
   562 
   562 
   563 
   563 
   564 
   564 
   565   /// @}
   565   /// @}
   566   
   566   
   567 } //END OF NAMESPACE HUGO
   567 } //END OF NAMESPACE LEMON
   568 
   568 
   569 #endif //EDMONDS_H
   569 #endif //EDMONDS_H