add interface for matching algo
This commit is contained in:
parent
0b91007fa6
commit
a35d86d0d4
2 changed files with 20 additions and 0 deletions
8
edmonds.cpp
Normal file
8
edmonds.cpp
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#include "edmonds.h"
|
||||||
|
|
||||||
|
namespace Edmonds {
|
||||||
|
ED::Graph maximum_matching(ED::Graph & graph)
|
||||||
|
{
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
12
edmonds.h
Normal file
12
edmonds.h
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
#ifndef EDMONDS_HPP
|
||||||
|
#define EDMONDS_HPP
|
||||||
|
|
||||||
|
#include "graph.hpp"
|
||||||
|
|
||||||
|
namespace Edmonds {
|
||||||
|
ED::Graph maximum_matching(ED::Graph & graph);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#endif //EDMONDS_HPP
|
Loading…
Reference in a new issue