↰ Return to documentation for file (include/networkit/community/LocalPartitionEvaluation.hpp
)
#ifndef NETWORKIT_COMMUNITY_LOCAL_PARTITION_EVALUATION_HPP_
#define NETWORKIT_COMMUNITY_LOCAL_PARTITION_EVALUATION_HPP_
#include <networkit/community/LocalCommunityEvaluation.hpp>
#include <networkit/graph/Graph.hpp>
#include <networkit/structures/Partition.hpp>
namespace NetworKit {
class LocalPartitionEvaluation : public LocalCommunityEvaluation {
public:
LocalPartitionEvaluation(const Graph &G, const Partition &P);
protected:
const Graph *G;
const Partition *P;
};
} // namespace NetworKit
#endif // NETWORKIT_COMMUNITY_LOCAL_PARTITION_EVALUATION_HPP_