Exemplo n.º 1
0
  private void invalidateHelper(Hashable hashable, Token pleft, Token t) {
    hashable.hash(null);
    if (hashable instanceof Leaf) return;
    // else: node.

    Inner node = (Inner) hashable;
    if (Range.contains(pleft, node.token, t))
      // left child contains token
      invalidateHelper(node.lchild, pleft, t);
    else
      // right child contains token
      invalidateHelper(node.rchild, node.token, t);
  }
Exemplo n.º 2
0
 /** Invalidates the ranges containing the given token. */
 public void invalidate(Token t) {
   invalidateHelper(root, partitioner.getMinimumToken(), t);
 }