Program Listing for File PathGrowingMatcher.hpp

Return to documentation for file (include/networkit/matching/PathGrowingMatcher.hpp)

/*
 * PathGrowingMatcher.hpp
 *
 *  Created on: Jun 13, 2013
 *      Author: Henning
 */

#ifndef NETWORKIT_MATCHING_PATH_GROWING_MATCHER_HPP_
#define NETWORKIT_MATCHING_PATH_GROWING_MATCHER_HPP_

#include <networkit/matching/Matcher.hpp>
#include <networkit/matching/Matching.hpp>

namespace NetworKit {

class PathGrowingMatcher final : public Matcher {
    void checkInput() const;

public:
    PathGrowingMatcher(const Graph &G);

    PathGrowingMatcher(const Graph &G, const std::vector<double> &edgeScores);

    void run() override;
};

} /* namespace NetworKit */
#endif // NETWORKIT_MATCHING_PATH_GROWING_MATCHER_HPP_