# File lib/tree.rb, line 589
    def breadth
      isRoot? ? 1 : parent.children.size
    end