https://trac.sagemath.org/ticket/26794
Am Samstag, 1. Dezember 2018 08:57:36 UTC+1 schrieb Martin R: > > OK, here is code that certainly leaks and confirms what you found, Jori. > Congratulations! > > def check_bad5(n): > """ > > sage: check_bad5(100000) > > """ > G = Graph(2) > for i in range(n): > x = 0 in G.breadth_first_search(0) > if i % 10000 == 0: > print get_memory_usage() > > Martin > -- 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 https://groups.google.com/group/sage-devel. For more options, visit https://groups.google.com/d/optout.
