add interface for matching algo

This commit is contained in:
Maximilian Keßler 2023-11-04 17:49:41 +01:00
parent 0b91007fa6
commit a35d86d0d4
Signed by: max
GPG Key ID: BCC5A619923C0BA5
2 changed files with 20 additions and 0 deletions

8
edmonds.cpp Normal file
View File

@ -0,0 +1,8 @@
#include "edmonds.h"
namespace Edmonds {
ED::Graph maximum_matching(ED::Graph & graph)
{
};
}

12
edmonds.h Normal file
View 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