class Graphsrb::DiEdge

Public Instance Methods

==(other) click to toggle source
# File lib/graphsrb/diedge.rb, line 3
def ==(other)
  (vertex1.id == other.vertex1.id) && (vertex2.id == other.vertex2.id)
end