# File lib/facet/heap.rb, line 171
  def parent(i)
    (i-1) >> 1 # (i-1)/2, only valid iff i > 0 !!
  end