Using Sage 2.8.12 (attempted on the notebook servers with current version, but the one my account is one is sagenb.org and never gave an output at all), the following behavior happens:
sage: L = list(graphs(3, lambda H: H.size() <=3)) sage: len(L) 8 Yet, sage: L = list(graphs(3, lambda H: H.size() ==3)) sage: len(L) 0 even though sage: for G in L: print G.size() 0 0 0 0 1 2 1 3 But, interestingly, sage: L = list(graphs(3, lambda H: H.size() !=3)) sage: len(L) 7 I assume this is a bug, but because I don't understand canaug_traverse, I am not certain. Thanks for any clarification! Apologies in advance if this was already fixed and I didn't get it due to lackadaisical upgrades. kcrisman --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-support URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---