↰ Return to documentation for file (include/networkit/matching/LocalMaxMatcher.hpp
)
/*
* LocalMaxMatcher.hpp
*
* Created on: 05.12.2012
* Author: Christian Staudt
*/
#ifndef NETWORKIT_MATCHING_LOCAL_MAX_MATCHER_HPP_
#define NETWORKIT_MATCHING_LOCAL_MAX_MATCHER_HPP_
#include <networkit/graph/Graph.hpp>
#include <networkit/matching/Matcher.hpp>
namespace NetworKit {
class LocalMaxMatcher final : public Matcher {
public:
LocalMaxMatcher(const Graph &G);
void run() override;
};
} /* namespace NetworKit */
#endif // NETWORKIT_MATCHING_LOCAL_MAX_MATCHER_HPP_