↰ Return to documentation for file (include/networkit/community/Conductance.hpp
)
/*
* Conductance.hpp
*
* Created on: 26.02.2014
* Author: Henning
*/
#ifndef NETWORKIT_COMMUNITY_CONDUCTANCE_HPP_
#define NETWORKIT_COMMUNITY_CONDUCTANCE_HPP_
#include <networkit/auxiliary/NumericTools.hpp>
#include <networkit/community/EdgeCut.hpp>
#include <networkit/community/QualityMeasure.hpp>
namespace NetworKit {
class Conductance final : public QualityMeasure {
public:
double getQuality(const Partition &zeta, const Graph &G) override;
};
} /* namespace NetworKit */
#endif // NETWORKIT_COMMUNITY_CONDUCTANCE_HPP_