↰ Return to documentation for file (include/networkit/linkprediction/ResourceAllocationIndex.hpp
)
/*
* ResourceAllocationIndex.hpp
*
* Created on: 11.04.2015
* Author: Kolja Esders (kolja.esders@student.kit.edu)
*/
#ifndef NETWORKIT_LINKPREDICTION_RESOURCE_ALLOCATION_INDEX_HPP_
#define NETWORKIT_LINKPREDICTION_RESOURCE_ALLOCATION_INDEX_HPP_
#include <networkit/linkprediction/LinkPredictor.hpp>
namespace NetworKit {
class ResourceAllocationIndex : public LinkPredictor {
private:
double runImpl(node u, node v) override;
public:
using LinkPredictor::LinkPredictor;
};
} // namespace NetworKit
#endif // NETWORKIT_LINKPREDICTION_RESOURCE_ALLOCATION_INDEX_HPP_