15 #ifndef __MLPACK_METHODS_NEIGHBOR_SEARCH_TRAVERSAL_INFO_HPP
16 #define __MLPACK_METHODS_NEIGHBOR_SEARCH_TRAVERSAL_INFO_HPP
30 template<
typename TreeType>
TreeType *& LastQueryNode()
Modify the last query node.
TreeType * LastQueryNode() const
Get the last query node.
Linear algebra utility functions, generally performed on matrices or vectors.
TreeType * lastQueryNode
The last query node.
double LastScore() const
Get the score associated with the last query and reference nodes.
NeighborSearchTraversalInfo()
Create the TraversalInfo object and initialize the pointers to NULL.
Traversal information for NeighborSearch.
double LastBaseCase() const
Get the base case associated with the last node combination.
double & LastScore()
Modify the score associated with the last query and reference nodes.
TreeType * LastReferenceNode() const
Get the last reference node.
double lastScore
The last distance.
double lastBaseCase
The last base case.
double & LastBaseCase()
Modify the base case associated with the last node combination.
TreeType * lastReferenceNode
The last reference node.
TreeType *& LastReferenceNode()
Modify the last reference node.