Package elki.database.query
Class ExactPrioritySearcher<O>
- java.lang.Object
-
- elki.database.query.ExactPrioritySearcher<O>
-
- Type Parameters:
O- Object type
- All Implemented Interfaces:
DBIDIter,DBIDRef,KNNSearcher<O>,PrioritySearcher<O>,RangeSearcher<O>,Iter
public class ExactPrioritySearcher<O> extends java.lang.Object implements PrioritySearcher<O>
Priority searcher that refines all objects to their exact distances, using another priority searcher inside to provide candidates. This class allows accessing the kNN in increasing order (without storing all of them, depending on the index).We experimented with a queue of elements where only a lower bound of the distance was available, and tried to lazily refine them, but there would only be one element in this queue by the allLowerBound requirement on the inner query.
- Since:
- 0.8.0
- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description private DoubleDBIDHeapexactRefined candidates.private PrioritySearcher<O>innerNested priority searcherprivate doublethresholdDistance threshold
-
Constructor Summary
Constructors Constructor Description ExactPrioritySearcher(PrioritySearcher<O> inner)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrioritySearcher<O>advance()Moves the iterator forward to the next entry.doubleallLowerBound()Lower bound for all subsequent instances (that have been completely explored).doublecomputeExactDistance()Compute the exact distance to the current candidate.PrioritySearcher<O>decreaseCutoff(double threshold)Decrease the cutoff threshold.doublegetApproximateAccuracy()Get approximate distance accuracy (if available).doublegetApproximateDistance()Get approximate distance (if available).doublegetLowerBound()Get the lower bound (if available).doublegetUpperBound()Get the upper bound (if available).intinternalGetIndex()Internal only: Get the internal index.PrioritySearcher<O>search(O query)Start search with a new object.booleanvalid()Returns true if the iterator currently points to a valid object.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface elki.database.query.PrioritySearcher
getKNN, getRange, search
-
Methods inherited from interface elki.database.query.range.RangeSearcher
getRange
-
-
-
-
Field Detail
-
inner
private PrioritySearcher<O> inner
Nested priority searcher
-
threshold
private double threshold
Distance threshold
-
exact
private DoubleDBIDHeap exact
Refined candidates.
-
-
Constructor Detail
-
ExactPrioritySearcher
public ExactPrioritySearcher(PrioritySearcher<O> inner)
Constructor.- Parameters:
inner- Inner query
-
-
Method Detail
-
search
public PrioritySearcher<O> search(O query)
Description copied from interface:PrioritySearcherStart search with a new object.- Specified by:
searchin interfacePrioritySearcher<O>- Parameters:
query- Query object- Returns:
this, for chaining
-
decreaseCutoff
public PrioritySearcher<O> decreaseCutoff(double threshold)
Description copied from interface:PrioritySearcherDecrease the cutoff threshold.The cutoff must not be increased, as the search may have pruned some results automatically.
- Specified by:
decreaseCutoffin interfacePrioritySearcher<O>- Parameters:
threshold- Threshold parameter- Returns:
- this, for chaining
-
getApproximateDistance
public double getApproximateDistance()
Description copied from interface:PrioritySearcherGet approximate distance (if available).Quality guarantees may vary a lot!
- Specified by:
getApproximateDistancein interfacePrioritySearcher<O>- Returns:
Double.NaNif not valid
-
getApproximateAccuracy
public double getApproximateAccuracy()
Description copied from interface:PrioritySearcherGet approximate distance accuracy (if available).Quality guarantees may vary a lot!
- Specified by:
getApproximateAccuracyin interfacePrioritySearcher<O>- Returns:
Double.NaNif not valid
-
getLowerBound
public double getLowerBound()
Description copied from interface:PrioritySearcherGet the lower bound (if available).Note: the lower bound is already checked by the cutoff of the priority search, so this is primarily useful for analyzing the search behavior.
- Specified by:
getLowerBoundin interfacePrioritySearcher<O>- Returns:
Double.NaNif not valid
-
getUpperBound
public double getUpperBound()
Description copied from interface:PrioritySearcherGet the upper bound (if available).- Specified by:
getUpperBoundin interfacePrioritySearcher<O>- Returns:
Double.NaNif not valid
-
computeExactDistance
public double computeExactDistance()
Description copied from interface:PrioritySearcherCompute the exact distance to the current candidate.The searcher may or may not have this value already.
- Specified by:
computeExactDistancein interfacePrioritySearcher<O>- Returns:
- Distance
-
internalGetIndex
public int internalGetIndex()
Description copied from interface:DBIDRefInternal only: Get the internal index.NOT FOR PUBLIC USE - ELKI Optimization engine only.
- Specified by:
internalGetIndexin interfaceDBIDRef- Returns:
- Internal index
-
allLowerBound
public double allLowerBound()
Description copied from interface:PrioritySearcherLower bound for all subsequent instances (that have been completely explored). The searcher guarantees that no further results will be returned with a distance less than this.- Specified by:
allLowerBoundin interfacePrioritySearcher<O>- Returns:
- lower bound;
0if no guarantees (e.g., linear scan)
-
valid
public boolean valid()
Description copied from interface:IterReturns true if the iterator currently points to a valid object.
-
advance
public PrioritySearcher<O> advance()
Description copied from interface:IterMoves the iterator forward to the next entry.
-
-