diff --git a/edmonds.cpp b/edmonds.cpp new file mode 100644 index 0000000..227c8ce --- /dev/null +++ b/edmonds.cpp @@ -0,0 +1,8 @@ +#include "edmonds.h" + +namespace Edmonds { +ED::Graph maximum_matching(ED::Graph & graph) +{ + +}; +} \ No newline at end of file diff --git a/edmonds.h b/edmonds.h new file mode 100644 index 0000000..5a34955 --- /dev/null +++ b/edmonds.h @@ -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