de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.bulk
Interface BulkSplit

All Known Implementing Classes:
AbstractBulkSplit, MaxExtensionBulkSplit, ZCurveBulkSplit

public interface BulkSplit

Interface for a bulk split strategy.


Method Summary
<T extends SpatialComparable>
List<List<T>>
partition(List<T> spatialObjects, int minEntries, int maxEntries)
          Partitions the specified feature vectors
 

Method Detail

partition

<T extends SpatialComparable> List<List<T>> partition(List<T> spatialObjects,
                                                      int minEntries,
                                                      int maxEntries)
Partitions the specified feature vectors

Type Parameters:
T - actual type we split
Parameters:
spatialObjects - the spatial objects to be partitioned
minEntries - the minimum number of entries in a partition
maxEntries - the maximum number of entries in a partition
Returns:
the partition of the specified spatial objects

Release 0.4.0 (2011-09-20_1324)