module RGL::MutableGraph

def remove_vertices(*a)


{#remove_vertex}.
Remove all vertices specified by the array a from the graph by calling
def remove_vertices(*a)
  a.each { |v| remove_vertex v }
end