↰ Return to documentation for file (include/networkit/community/ParallelAgglomerativeClusterer.hpp
)
/*
* ParallelAgglomerativeClusterer.hpp
*
* Created on: 30.10.2012
* Author: Christian Staudt, Henning Meyerhenke
*/
#ifndef NETWORKIT_COMMUNITY_PARALLEL_AGGLOMERATIVE_CLUSTERER_HPP_
#define NETWORKIT_COMMUNITY_PARALLEL_AGGLOMERATIVE_CLUSTERER_HPP_
#include <networkit/community/CommunityDetectionAlgorithm.hpp>
namespace NetworKit {
class ParallelAgglomerativeClusterer final : public CommunityDetectionAlgorithm {
public:
ParallelAgglomerativeClusterer(const Graph &G);
void run() override;
};
} /* namespace NetworKit */
#endif // NETWORKIT_COMMUNITY_PARALLEL_AGGLOMERATIVE_CLUSTERER_HPP_