Uses of Class
messif.algorithms.Algorithm.AlgorithmConstructor

Packages that use Algorithm.AlgorithmConstructor
messif.algorithms.impl Implementation of basic search algorithms. 
 

Uses of Algorithm.AlgorithmConstructor in messif.algorithms.impl
 

Constructors in messif.algorithms.impl with annotations of type Algorithm.AlgorithmConstructor
ParallelSequentialScan(int parallelization)
          Creates a new instance of ParallelSequentialScan access structure with MemoryStorageBucket as the storage class.
ParallelSequentialScan(int parallelization, java.lang.Class<? extends LocalBucket> bucketClass)
          Creates a new instance of ParallelSequentialScan access structure with specific bucket class.
ParallelSequentialScan(int parallelization, java.lang.Class<? extends LocalBucket> bucketClass, java.util.Map<java.lang.String,java.lang.Object> bucketClassParams)
          Creates a new instance of ParallelSequentialScan access structure with specific bucket class.
SequentialScan()
          Creates a new instance of SequantialScan access structure with the default MemoryStorageBucket class.
SequentialScan(java.lang.Class<? extends LocalBucket> bucketClass)
          Creates a new instance of SequantialScan access structure with specific bucket class.
SequentialScan(java.lang.Class<? extends LocalBucket> bucketClass, AbstractObjectIterator<LocalAbstractObject> pivotIter, int pivotCount, boolean pivotDistsValidIfGiven)
          Creates a new instance of SequantialScan access structure with specific bucket class and filtering pivots.
SequentialScan(java.lang.Class<? extends LocalBucket> bucketClass, java.util.Map<java.lang.String,java.lang.Object> bucketClassParams)
          Creates a new instance of SequantialScan access structure with specific bucket class.
SequentialScan(java.lang.Class<? extends LocalBucket> bucketClass, java.util.Map<java.lang.String,java.lang.Object> bucketClassParams, AbstractObjectIterator<LocalAbstractObject> pivotIter, int pivotCount, boolean pivotDistsValidIfGiven)
          Creates a new instance of SequantialScan access structure with specific bucket class and filtering pivots.