module RGL::MutableGraph

def add_edges(*edges)


{Edge::UnDirectedEdge}.
array can be both two-element arrays or instances of {Edge::DirectedEdge} or
Add all edges in the _edges_ array to the edge set. Elements of the
def add_edges(*edges)
  edges.each { |edge| add_edge(edge[0], edge[1]) }
end