Program Listing for File Eccentricity.hpp

Return to documentation for file (include/networkit/distance/Eccentricity.hpp)

/*
 * Eccentricity.hpp
 *
 *  Created on: 19.02.2014
 *      Author: cls
 */

#ifndef NETWORKIT_DISTANCE_ECCENTRICITY_HPP_
#define NETWORKIT_DISTANCE_ECCENTRICITY_HPP_

#include <networkit/graph/Graph.hpp>

namespace NetworKit {

class Eccentricity {

public:
    static std::pair<node, count> getValue(const Graph &G, node u);
};

} /* namespace NetworKit */

#endif // NETWORKIT_DISTANCE_ECCENTRICITY_HPP_