Program Listing for File LaplacianCentrality.hpp

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

/*
 * LaplacianCentrality.hpp
 *
 *  Created on: 08.03.2018
 *      Author: Kolja Esders
 */

#ifndef NETWORKIT_CENTRALITY_LAPLACIAN_CENTRALITY_HPP_
#define NETWORKIT_CENTRALITY_LAPLACIAN_CENTRALITY_HPP_

#include <networkit/centrality/Centrality.hpp>

namespace NetworKit {

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

    void run() override;
};

} /* namespace NetworKit */
#endif // NETWORKIT_CENTRALITY_LAPLACIAN_CENTRALITY_HPP_