# File lib/rubyrep/table_sorter.rb, line 53
    def sort
      # Note:
      # We should not use TSort#tsort as this one throws an exception if
      # there are cyclic redundancies.
      # (Our goal is to just get the best ordering that is possible and then
      # take our chances.)
      strongly_connected_components.flatten
    end