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