↰ Return to documentation for file (include/networkit/scd/LocalT.hpp
)
#ifndef NETWORKIT_SCD_LOCAL_T_HPP_
#define NETWORKIT_SCD_LOCAL_T_HPP_
#include <networkit/scd/SelectiveCommunityDetector.hpp>
namespace NetworKit {
class LocalT : public SelectiveCommunityDetector {
public:
LocalT(const Graph &g);
std::set<node> expandOneCommunity(const std::set<node> &s) override;
using SelectiveCommunityDetector::expandOneCommunity;
};
} // namespace NetworKit
#endif // NETWORKIT_SCD_LOCAL_T_HPP_