↰ Return to documentation for file (include/networkit/community/QualityMeasure.hpp
)
/*
* QualityMeasure.hpp
*
* Created on: 10.12.2012
* Author: Christian Staudt
*/
#ifndef NETWORKIT_COMMUNITY_QUALITY_MEASURE_HPP_
#define NETWORKIT_COMMUNITY_QUALITY_MEASURE_HPP_
#include <networkit/graph/Graph.hpp>
#include <networkit/structures/Partition.hpp>
namespace NetworKit {
class QualityMeasure {
public:
virtual double getQuality(const Partition &zeta, const Graph &G) = 0;
};
} /* namespace NetworKit */
#endif // NETWORKIT_COMMUNITY_QUALITY_MEASURE_HPP_