equal
deleted
inserted
replaced
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 |