1#ifndef KNNCOLLE_PREBUILT_HPP
2#define KNNCOLLE_PREBUILT_HPP
27template<
typename Index_,
typename Data_,
typename Distance_>
59 virtual std::unique_ptr<Searcher<Index_, Data_, Distance_> >
initialize()
const = 0;
Interface for searching nearest-neighbor indices.
Interface for prebuilt nearest-neighbor search indices.
Definition Prebuilt.hpp:28
virtual Index_ num_observations() const =0
virtual std::unique_ptr< Searcher< Index_, Data_, Distance_ > > initialize() const =0
virtual std::size_t num_dimensions() const =0
Collection of KNN algorithms.
Definition Bruteforce.hpp:24