Environment for
DeveLoping
KDD-Applications
Supported by Index-Structures

Uses of Class
de.lmu.ifi.dbs.elki.index.tree.TreeIndexPathComponent

Packages that use TreeIndexPathComponent
de.lmu.ifi.dbs.elki.algorithm.clustering Clustering algorithms Clustering algorithms are supposed to implement the Algorithm-Interface. 
de.lmu.ifi.dbs.elki.index.tree Tree-based index structures 
de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants R*-Tree and variants. 
de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.deliclu DeLiCluTree 
de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.util Utilities for R*-Tree and variants. 
 

Uses of TreeIndexPathComponent in de.lmu.ifi.dbs.elki.algorithm.clustering
 

Method parameters in de.lmu.ifi.dbs.elki.algorithm.clustering with type arguments of type TreeIndexPathComponent
private  void DeLiClu.reinsertExpanded(SpatialDistanceFunction<O,D> distFunction, DeLiCluTree<O> index, List<TreeIndexPathComponent<DeLiCluEntry>> path, AnnotationResult<KNNList<D>> knns)
          Reinserts the objects of the already expanded nodes.
private  void DeLiClu.reinsertExpanded(SpatialDistanceFunction<O,D> distFunction, DeLiCluTree<O> index, List<TreeIndexPathComponent<DeLiCluEntry>> path, int pos, SpatialEntry parentEntry, AnnotationResult<KNNList<D>> knns)
           
 

Uses of TreeIndexPathComponent in de.lmu.ifi.dbs.elki.index.tree
 

Fields in de.lmu.ifi.dbs.elki.index.tree declared as TreeIndexPathComponent
private  TreeIndexPathComponent<E> TreeIndexPath.lastPathComponent
          Last path component.
 

Methods in de.lmu.ifi.dbs.elki.index.tree that return TreeIndexPathComponent
 TreeIndexPathComponent<E> TreeIndexPath.getLastPathComponent()
          Returns the last component of this path.
 TreeIndexPathComponent<E> TreeIndexPath.getPathComponent(int element)
          Returns the path component at the specified index.
 

Methods in de.lmu.ifi.dbs.elki.index.tree that return types with arguments of type TreeIndexPathComponent
 List<TreeIndexPathComponent<E>> TreeIndexPath.getPath()
          Returns an ordered list of IndexPathComponents containing the components of this IndexPath.
 

Methods in de.lmu.ifi.dbs.elki.index.tree with parameters of type TreeIndexPathComponent
 TreeIndexPath<E> TreeIndexPath.pathByAddingChild(TreeIndexPathComponent<E> child)
          Returns a new path containing all the elements of this object plus child.
 

Constructors in de.lmu.ifi.dbs.elki.index.tree with parameters of type TreeIndexPathComponent
TreeIndexPath(TreeIndexPath<E> parent, TreeIndexPathComponent<E> lastElement)
          Constructs a new IndexPath, which is the path identified by parent ending in lastElement.
TreeIndexPath(TreeIndexPathComponent<E> singlePath)
          Constructs a IndexPath containing only a single element.
 

Constructor parameters in de.lmu.ifi.dbs.elki.index.tree with type arguments of type TreeIndexPathComponent
TreeIndexPath(List<TreeIndexPathComponent<E>> path)
          Constructs a path from a list of path components, uniquely identifying the path from the root of the index to a specific node.
TreeIndexPath(List<TreeIndexPathComponent<E>> path, int length)
          Constructs a new IndexPath with the identified path components of length length.
 

Uses of TreeIndexPathComponent in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants
 

Methods in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants that return TreeIndexPathComponent
private  TreeIndexPathComponent<E> AbstractRStarTree.getChildWithLeastOverlap(N node, HyperBoundingBox mbr)
          Returns the path information of the entry of the specified node which needs least overlap enlargement if the given mbr would be inserted into.
private  TreeIndexPathComponent<E> AbstractRStarTree.getLeastEnlargement(N node, HyperBoundingBox mbr)
          Returns the path information of the entry of the specified node with the least enlargement if the given mbr would be inserted into.
 

Uses of TreeIndexPathComponent in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.deliclu
 

Methods in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.deliclu that return types with arguments of type TreeIndexPathComponent
 List<TreeIndexPathComponent<DeLiCluEntry>> DeLiCluTree.setHandled(O o)
          Marks the specified object as handled and returns the path of node ids from the root to the objects's parent.
 

Uses of TreeIndexPathComponent in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.util
 

Fields in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.util declared as TreeIndexPathComponent
private  TreeIndexPathComponent<E> Enlargement.pathComponent
          The path information of the entry representing the node.
 

Methods in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.util that return TreeIndexPathComponent
 TreeIndexPathComponent<E> Enlargement.getPathComponent()
          Returns the path information of the entry representing the node.
 

Constructors in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.util with parameters of type TreeIndexPathComponent
Enlargement(TreeIndexPathComponent<E> pathComponent, double volume, double volInc, double overlapInc)
          Creates an new Enlargement object with the specified parameters.
 


Release 0.2 (2009-07-06_1820)