On Apr 8, 11:50 am, William Stein <wst...@gmail.com> wrote:

> Thanks for the bug report.  We are tracking this here:
>
>  http://trac.sagemath.org/sage_trac/ticket/5713

Fantastic! I see that it is fixed already! I just added lambdas to my
graph_plot.py file and the graph plots OK.

Meanwhile, I've noticed that the degrees are printed not in the order
of vertices in this graph,

G.degree()
                [6, 6, 6, 3, 5]
[i for i in G.degree_iterator()]
                [6, 6, 6, 3, 5]

while it should be as in

[G.degree(i) for i in G.vertices()]
                [6, 6, 6, 5, 3]

Alec Mihailovs






--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to 
sage-support-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to