module TreeGraph

Constants

VERSION

Public Instance Methods

tree_graph() click to toggle source
# File lib/tree_graph.rb, line 5
def tree_graph
  TopDown.new(self).tree_graph
end
tree_graph_bottom_up() click to toggle source
# File lib/tree_graph.rb, line 9
def tree_graph_bottom_up
  BottomUp.new(self).tree_graph
end
tree_graph_bottom_up_in_same_order() click to toggle source
# File lib/tree_graph.rb, line 13
def tree_graph_bottom_up_in_same_order
  BottomUpInSameOrder.new(self).tree_graph
end