Program Listing for File TCE.hpp

Return to documentation for file (include/networkit/scd/TCE.hpp)

#ifndef NETWORKIT_SCD_TCE_HPP_
#define NETWORKIT_SCD_TCE_HPP_

#include <networkit/scd/SelectiveCommunityDetector.hpp>

namespace NetworKit {

class TCE : public SelectiveCommunityDetector {
private:
    bool refine;
    bool useJaccard;

public:
    TCE(const Graph &g, bool refine = false, bool useJaccard = false);

    std::set<node> expandOneCommunity(const std::set<node> &s) override;

    using SelectiveCommunityDetector::expandOneCommunity;
};

} // namespace NetworKit

#endif // NETWORKIT_SCD_TCE_HPP_