Program Listing for File LocalClusteringCoefficient.hpp

Return to documentation for file (include/networkit/centrality/LocalClusteringCoefficient.hpp)

/*
 * LocalClusteringCoefficient.hpp
 *
 *  Created on: 31.03.2015
 *      Author: maxv
 */

#ifndef NETWORKIT_CENTRALITY_LOCAL_CLUSTERING_COEFFICIENT_HPP_
#define NETWORKIT_CENTRALITY_LOCAL_CLUSTERING_COEFFICIENT_HPP_

#include <networkit/centrality/Centrality.hpp>

namespace NetworKit {

class LocalClusteringCoefficient : public Centrality {
public:
    LocalClusteringCoefficient(const Graph &G, bool turbo = false);

    void run() override;

    double maximum() override;

protected:
    bool turbo;
};

} /* namespace NetworKit */

#endif // NETWORKIT_CENTRALITY_LOCAL_CLUSTERING_COEFFICIENT_HPP_