Georgi Guninski
unread,Jul 5, 2023, 7:38:28 AM7/5/23Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sage-...@googlegroups.com
Hi sage devs, your daily dose of incomparable objects,
fix 'em while they are free ;)
G=Graph([("A",1)]);G.faces()
TypeError Traceback (most recent call last)
Cell In [1], line 1
----> 1 G=Graph([("A",Integer(1))]);G.faces()
File /home/sc_serv/sage/src/sage/graphs/generic_graph.py:6385, in
GenericGraph.faces(self, embedding)
6383 # Storage for face paths
6384 faces = []
-> 6385 minedge = min(edgeset)
6386 path = [minedge]
6387 edgeset.discard(minedge)
TypeError: '<' not supported between instances of 'int' and 'str'