Package elki.database.query.range
Class LinearScanDistanceRangeByObject<O>
- java.lang.Object
-
- elki.database.query.range.LinearScanDistanceRangeByObject<O>
-
- Type Parameters:
O
- relation object type
- All Implemented Interfaces:
LinearScanQuery
,RangeSearcher<O>
public class LinearScanDistanceRangeByObject<O> extends java.lang.Object implements RangeSearcher<O>, LinearScanQuery
Default linear scan range query class.- Since:
- 0.4.0
- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description private DistanceQuery<O>
distanceQuery
Distance to use.
-
Constructor Summary
Constructors Constructor Description LinearScanDistanceRangeByObject(DistanceQuery<O> distanceQuery)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ModifiableDoubleDBIDList
getRange(O obj, double range, ModifiableDoubleDBIDList result)
Get the neighbors for a particular id in a given query range.-
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.range.RangeSearcher
getRange
-
-
-
-
Field Detail
-
distanceQuery
private DistanceQuery<O> distanceQuery
Distance to use.
-
-
Constructor Detail
-
LinearScanDistanceRangeByObject
public LinearScanDistanceRangeByObject(DistanceQuery<O> distanceQuery)
Constructor.- Parameters:
distanceQuery
- Distance function to use
-
-
Method Detail
-
getRange
public ModifiableDoubleDBIDList getRange(O obj, double range, ModifiableDoubleDBIDList result)
Description copied from interface:RangeSearcher
Get the neighbors for a particular id in a given query range.- Specified by:
getRange
in interfaceRangeSearcher<O>
- Parameters:
obj
- query object IDrange
- Query rangeresult
- Output data structure- Returns:
- neighbors
-
-