O
- Database object type.public class PrimitiveDistanceQuery<O> extends AbstractDistanceQuery<O>
Modifier and Type | Field and Description |
---|---|
protected PrimitiveDistanceFunction<? super O> |
distanceFunction
The distance function we use.
|
relation
HINT_BULK, HINT_EXACT, HINT_HEAVY_USE, HINT_NO_CACHE, HINT_OPTIMIZED_ONLY, HINT_SINGLE
Constructor and Description |
---|
PrimitiveDistanceQuery(Relation<? extends O> relation,
PrimitiveDistanceFunction<? super O> distanceFunction)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
double |
distance(DBIDRef id1,
DBIDRef id2)
Returns the distance between the two objects specified by their object ids.
|
double |
distance(DBIDRef id1,
O o2)
Returns the distance between the two objects specified by their object ids.
|
double |
distance(O o1,
DBIDRef id2)
Returns the distance between the two objects specified by their object ids.
|
double |
distance(O o1,
O o2)
Returns the distance between the two objects specified by their object ids.
|
PrimitiveDistanceFunction<? super O> |
getDistanceFunction()
Get the inner distance function.
|
getRelation
protected final PrimitiveDistanceFunction<? super O> distanceFunction
public PrimitiveDistanceQuery(Relation<? extends O> relation, PrimitiveDistanceFunction<? super O> distanceFunction)
relation
- Representation to use.distanceFunction
- Our distance functionpublic double distance(DBIDRef id1, DBIDRef id2)
AbstractDistanceQuery
distance
in interface DistanceQuery<O>
distance
in class AbstractDistanceQuery<O>
id1
- first object idid2
- second object idpublic double distance(O o1, DBIDRef id2)
AbstractDistanceQuery
distance
in interface DistanceQuery<O>
distance
in class AbstractDistanceQuery<O>
o1
- first objectid2
- second object idpublic double distance(DBIDRef id1, O o2)
AbstractDistanceQuery
distance
in interface DistanceQuery<O>
distance
in class AbstractDistanceQuery<O>
id1
- first object ido2
- second objectpublic double distance(O o1, O o2)
AbstractDistanceQuery
distance
in interface DistanceQuery<O>
distance
in class AbstractDistanceQuery<O>
o1
- first objecto2
- second objectpublic PrimitiveDistanceFunction<? super O> getDistanceFunction()
DistanceQuery
Copyright © 2015 ELKI Development Team, Lehr- und Forschungseinheit für Datenbanksysteme, Ludwig-Maximilians-Universität München. License information.