edmonds-matching-algorithm/src/edmonds.h

13 lines
159 B
C
Raw Permalink Normal View History

2023-11-04 17:49:41 +01:00
#ifndef EDMONDS_HPP
#define EDMONDS_HPP
#include "graph.hpp"
namespace Edmonds {
ED::Graph maximum_matching(ED::Graph & graph);
}
#endif //EDMONDS_HPP