gmsh-TingyuanDoc
0.1
An Open-Source Timing-driven Analytical Mixed-size FPGA Placer
|
#include <nanoflann.hpp>
Public Member Functions | |
RadiusResultSet (DistanceType radius_, std::vector< std::pair< IndexType, DistanceType > > &indices_dists) | |
~RadiusResultSet () | |
void | init () |
void | clear () |
size_t | size () const |
bool | full () const |
bool | addPoint (DistanceType dist, IndexType index) |
DistanceType | worstDist () const |
std::pair< IndexType, DistanceType > | worst_item () const |
Public Attributes | |
const DistanceType | radius |
std::vector< std::pair< IndexType, DistanceType > > & | m_indices_dists |
A result-set class used when performing a radius based search.
Definition at line 160 of file nanoflann.hpp.
|
inline |
|
inline |
Definition at line 172 of file nanoflann.hpp.
|
inline |
Called during search to add an element matching the criteria.
Definition at line 185 of file nanoflann.hpp.
|
inline |
Definition at line 175 of file nanoflann.hpp.
|
inline |
Definition at line 179 of file nanoflann.hpp.
|
inline |
Definition at line 174 of file nanoflann.hpp.
|
inline |
Definition at line 177 of file nanoflann.hpp.
|
inline |
Find the worst result (furtherest neighbor) without copying or sorting Pre-conditions: size() > 0
Definition at line 198 of file nanoflann.hpp.
|
inline |
Definition at line 192 of file nanoflann.hpp.
std::vector<std::pair<IndexType,DistanceType> >& nanoflann::RadiusResultSet< DistanceType, IndexType >::m_indices_dists |
Definition at line 165 of file nanoflann.hpp.
const DistanceType nanoflann::RadiusResultSet< DistanceType, IndexType >::radius |
Definition at line 163 of file nanoflann.hpp.