Sage 5.8 G = graphs.CompleteBipartiteGraph(3,3); H=G.complement(); H.show()
instead of two triangles, one sees two chains each of length 2. However, H.edges() shows [(0, 1, None), (0, 2, None), (1, 2, None), (3, 4, None), (3, 5, None), (4, 5, None)] which is the correct graph so perhaps something wrong with show()? If someone can confirm that, I will open a ticket. -- You received this message because you are subscribed to the Google Groups "sage-support" 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-support?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
