From a35d86d0d4017ee9347e89951ec0f6f510087ad1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Sat, 4 Nov 2023 17:49:41 +0100 Subject: [PATCH] add interface for matching algo --- edmonds.cpp | 8 ++++++++ edmonds.h | 12 ++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 edmonds.cpp create mode 100644 edmonds.h 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