Program Listing for File SimmelianOverlapScore.hpp

Return to documentation for file (include/networkit/sparsification/SimmelianOverlapScore.hpp)

/*
 * SimmelianOverlapScore.hpp
 *
 *  Created on: 22.07.2014
 *      Author: Gerd Lindner
 */

#ifndef NETWORKIT_SPARSIFICATION_SIMMELIAN_OVERLAP_SCORE_HPP_
#define NETWORKIT_SPARSIFICATION_SIMMELIAN_OVERLAP_SCORE_HPP_

#include <set>
#include <networkit/sparsification/SimmelianScore.hpp>

namespace NetworKit {

class SimmelianOverlapScore final : public SimmelianScore {

public:
    SimmelianOverlapScore(const Graph &graph, const std::vector<count> &triangles, count maxRank);
    void run() override;

private:
    count maxRank;
};

} // namespace NetworKit
/* namespace NetworKit */
#endif // NETWORKIT_SPARSIFICATION_SIMMELIAN_OVERLAP_SCORE_HPP_