↰ Return to documentation for file (include/networkit/community/LFM.hpp
)
/*
* LFM.hpp
*
* Created on 10.12.2020
* Author: John Gelhausen
*/
#ifndef NETWORKIT_COMMUNITY_LFM_HPP_
#define NETWORKIT_COMMUNITY_LFM_HPP_
#include <networkit/community/OverlappingCommunityDetectionAlgorithm.hpp>
#include <networkit/scd/SelectiveCommunityDetector.hpp>
namespace NetworKit {
class LFM final : public OverlappingCommunityDetectionAlgorithm {
public:
LFM(const Graph &G, SelectiveCommunityDetector &scd);
void run() override;
protected:
SelectiveCommunityDetector *scd;
};
} /* namespace NetworKit */
#endif // NETWORKIT_COMMUNITY_LFM_HPP_