# File lib/kwala/lib/cycle_detector.rb, line 282
    def print_graph(graph)
      print_dot_wrapper do
        print_sub_clusers(graph.keys)

        graph.sort.each do |k, v|
          print_node(v)
        end
      end
    end