module RGL::MutableGraph

def add_vertices(*a)


Add all objects in _a_ to the vertex set.
def add_vertices(*a)
  a.each { |v| add_vertex v }
end