Uses of Interface
net.obsearch.ob.OBInt

Packages that use OBInt
net.obsearch.dimension   
net.obsearch.distance   
net.obsearch.index   
net.obsearch.index.bucket.impl   
net.obsearch.index.bucket.sleek   
net.obsearch.index.ghs.impl   
net.obsearch.index.perm.impl   
net.obsearch.ob   
net.obsearch.pivots.bustos.impl   
net.obsearch.pivots.kmeans.impl   
net.obsearch.pivots.rf04   
net.obsearch.pivots.rf04.impl   
net.obsearch.pivots.sss.impl   
net.obsearch.query   
 

Uses of OBInt in net.obsearch.dimension
 

Methods in net.obsearch.dimension with parameters of type OBInt
static int[] DimensionInt.getBasicTuple(OBInt[] pivots, OBInt object)
          Creates a int array from the given pivots and the given object.
static int[] DimensionInt.getBasicTuple(OBInt[] pivots, OBInt object)
          Creates a int array from the given pivots and the given object.
static int[] DimensionInt.getPrimitiveTuple(OBInt[] pivots, OBInt object)
          Calculates the smap tuple for the given objectId, and the given pivots
static int[] DimensionInt.getPrimitiveTuple(OBInt[] pivots, OBInt object)
          Calculates the smap tuple for the given objectId, and the given pivots
static DimensionInt[] DimensionInt.getTuple(OBInt[] pivots, OBInt object)
          Creates a dimension array from the given pivots and the given object.
static DimensionInt[] DimensionInt.getTuple(OBInt[] pivots, OBInt object)
          Creates a dimension array from the given pivots and the given object.
 

Method parameters in net.obsearch.dimension with type arguments of type OBInt
static int[] DimensionInt.getPrimitiveTuple(long[] pivots, long objectId, Index<? extends OBInt> index)
          Calculates the smap tuple for the given objectId, and the given pivots
static DimensionInt[] DimensionInt.getTuple(long[] pivots, long objectId, Index<? extends OBInt> index)
          Creates a dimension array from the given pivots and the given object id.
static int DimensionInt.minDistance(List<Long> objects, Index<OBInt> index)
          Calculate the minimum distance of the given objects (all objects compared against all objects)
static long[] DimensionInt.select(int k, Random r, cern.colt.list.LongArrayList source, Index<OBInt> index, cern.colt.list.LongArrayList excludes, int minDistance)
          Selects k random elements from the given source.
 

Uses of OBInt in net.obsearch.distance
 

Classes in net.obsearch.distance with type parameters of type OBInt
 class OBDistanceCalculatorInt<O extends OBInt>
           
 

Uses of OBInt in net.obsearch.index
 

Classes in net.obsearch.index with type parameters of type OBInt
 interface IndexInt<O extends OBInt>
          An Index interface for distance functions that return Ints.
 class TestFrameworkApproxInt<O extends OBInt>
           Perform approximate validation of data.
 class TestFrameworkInt<O extends OBInt>
          TestFrameworkInt performs several tests on an index.
 

Classes in net.obsearch.index that implement OBInt
 class OBVectorInt
          L1 distance implementation for ints.
 

Fields in net.obsearch.index declared as OBInt
protected  O[] TestFrameworkInt.data
           
protected  O[] TestFrameworkInt.queries
           
 

Methods in net.obsearch.index that return OBInt
protected  O[] TestFrameworkInt.createArray(int size)
          Create an array of size size.
 

Methods in net.obsearch.index with parameters of type OBInt
 int OBVectorInt.distance(OBInt object)
           
static int[] CommonsInt.fullMatchLite(OBInt query, boolean filterSame, IndexInt index)
          This method returns a list of all the distances of the query against the DB.
 

Uses of OBInt in net.obsearch.index.bucket.impl
 

Classes in net.obsearch.index.bucket.impl with type parameters of type OBInt
 class AbstractBucketContainerInt<O extends OBInt,B extends BucketObjectInt>
          AbstractBucketContainerInt Holds the functionality of a bucket that sorts its smap-vectors lexicographically.
 class BucketContainerInt<O extends OBInt>
          BucketContainer is a dummy class that is used to directly inherit the functionality from AbstractBucketContainerInt.
 class BucketObjectInt<O extends OBInt>
          BucketObjectInt extends BucketObject by adding an SMAP vector used to minimize the number of distance computations required per object.
 

Methods in net.obsearch.index.bucket.impl with parameters of type OBInt
static int[] BucketObjectInt.convertTuple(OBInt object, OBInt[] pivots)
           
static int[] BucketObjectInt.convertTuple(OBInt object, OBInt[] pivots)
           
 

Uses of OBInt in net.obsearch.index.bucket.sleek
 

Classes in net.obsearch.index.bucket.sleek with type parameters of type OBInt
 class SleekBucketInt<O extends OBInt>
          AbstractSleekBucket is designed to hold objects that belong to one bucket.
 

Uses of OBInt in net.obsearch.index.ghs.impl
 

Classes in net.obsearch.index.ghs.impl with type parameters of type OBInt
 class Sketch64Int<O extends OBInt>
           
 

Uses of OBInt in net.obsearch.index.perm.impl
 

Classes in net.obsearch.index.perm.impl with type parameters of type OBInt
 class DistPermInt<O extends OBInt>
           
 

Uses of OBInt in net.obsearch.ob
 

Methods in net.obsearch.ob with parameters of type OBInt
 int OBInt.distance(OBInt object)
          Calculates the similarity of "this" and "object".
 

Uses of OBInt in net.obsearch.pivots.bustos.impl
 

Classes in net.obsearch.pivots.bustos.impl with type parameters of type OBInt
 class IncrementalBustosNavarroChavezInt<O extends OBInt>
          IncrementalBustosNavarroChavezInt is an implementation for OBInt objects
 

Uses of OBInt in net.obsearch.pivots.kmeans.impl
 

Classes in net.obsearch.pivots.kmeans.impl with type parameters of type OBInt
 class IncrementalKMeansPPPivotSelectorInt<O extends OBInt>
          This pivot selector uses k-means++ to select "good" centers.
 

Uses of OBInt in net.obsearch.pivots.rf04
 

Classes in net.obsearch.pivots.rf04 with type parameters of type OBInt
 class RF04PivotSelectorInt<O extends OBInt>
           
 

Uses of OBInt in net.obsearch.pivots.rf04.impl
 

Classes in net.obsearch.pivots.rf04.impl with type parameters of type OBInt
 class RF04PivotSelectorInt<O extends OBInt>
           
 

Uses of OBInt in net.obsearch.pivots.sss.impl
 

Classes in net.obsearch.pivots.sss.impl with type parameters of type OBInt
 class SSSInt<O extends OBInt>
           
 

Uses of OBInt in net.obsearch.query
 

Classes in net.obsearch.query with type parameters of type OBInt
 class OBQueryInt<O extends OBInt>
          Object used to store a query request.
 



Copyright © 2007-2011 Arnoldo Jose Muller Molina. All Rights Reserved.