↰ Return to documentation for file (include/networkit/linkprediction/ROCMetric.hpp
)
/*
* ROCMetric.hpp
*
* Created on: 14.03.2015
* Author: Kolja Esders
*/
#ifndef NETWORKIT_LINKPREDICTION_ROC_METRIC_HPP_
#define NETWORKIT_LINKPREDICTION_ROC_METRIC_HPP_
#include <networkit/graph/Graph.hpp>
#include <networkit/linkprediction/EvaluationMetric.hpp>
namespace NetworKit {
class ROCMetric final : public EvaluationMetric {
std::pair<std::vector<double>, std::vector<double>> generatePoints() override;
public:
using EvaluationMetric::EvaluationMetric;
};
} // namespace NetworKit
#endif // NETWORKIT_LINKPREDICTION_ROC_METRIC_HPP_