> So, you suggest that if the user wants a plain non-multi-non-loopy-graph,
> then it is not needed to provide multiedges=False? Since most people are
> happy with plain graphs, it sounds reasonable to me to have that be the
> default.
Yep, that is the aim. Plus it is already the current 'default' chosen
by Graph(). On the other hand, the future behaviour of
Graph([(0,1),(0,1),(0,1),(0,1)]) will be a graph with two points and
one edge between them.
This is more or less what happens when you do:
g = Graph()
g.add_edges([(0,1),(0,1),(0,1),(0,1)])
For one year the Graph([(0,1),(0,1),(0,1),(0,1)]) will raise a warning
("You should set multiedges=True"), and at the end of that "all graphs
will be simple, unless explicitly specified otherwise".
Nathann
--
You received this message because you are subscribed to the Google Groups
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.