1#ifndef KNNCOLLE_PREBUILT_HPP
2#define KNNCOLLE_PREBUILT_HPP
27template<
typename Dim_,
typename Index_,
typename Float_>
53 virtual std::unique_ptr<Searcher<Index_, Float_> >
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_, Float_ > > initialize() const =0
virtual Dim_ num_dimensions() const =0
Collection of KNN algorithms.
Definition Bruteforce.hpp:22