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