Program Listing for File TwoPhaseL.hpp

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

#ifndef NETWORKIT_SCD_TWO_PHASE_L_HPP_
#define NETWORKIT_SCD_TWO_PHASE_L_HPP_

#include <networkit/scd/SelectiveCommunityDetector.hpp>

namespace NetworKit {

class TwoPhaseL : public SelectiveCommunityDetector {

public:
    TwoPhaseL(const Graph &g);

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

    // inherit method from parent class.
    using SelectiveCommunityDetector::expandOneCommunity;
};

} /* namespace NetworKit */
#endif // NETWORKIT_SCD_TWO_PHASE_L_HPP_