# File lib/tree.rb, line 402
    def root
      root = self
      root = root.parent while !root.isRoot?
      root
    end