edmonds-matching-algorithm/src/edmonds.h

13 lines
159 B
C++

#ifndef EDMONDS_HPP
#define EDMONDS_HPP
#include "graph.hpp"
namespace Edmonds {
ED::Graph maximum_matching(ED::Graph & graph);
}
#endif //EDMONDS_HPP