↰ Return to documentation for file (include/networkit/linkprediction/AdjustedRandIndex.hpp
)
/*
* AdjustedRandIndex.hpp
*
* Created on: 11.04.2015
* Author: Kolja Esders
*/
#ifndef NETWORKIT_LINKPREDICTION_ADJUSTED_RAND_INDEX_HPP_
#define NETWORKIT_LINKPREDICTION_ADJUSTED_RAND_INDEX_HPP_
#include <networkit/linkprediction/LinkPredictor.hpp>
namespace NetworKit {
class AdjustedRandIndex final : public LinkPredictor {
double runImpl(node u, node v) override;
public:
using LinkPredictor::LinkPredictor;
};
} // namespace NetworKit
#endif // NETWORKIT_LINKPREDICTION_ADJUSTED_RAND_INDEX_HPP_