# File lib/puppet/simple_graph.rb, line 65
65:     def other_vertex(direction, edge)
66:       case direction
67:       when :in; edge.source
68:       else
69:         edge.target
70:       end
71:     end