#4241: magma -- memory is never freed in the interface when MagmaElement's are
deleted
------------------------+---------------------------------------------------
 Reporter:  was         |        Owner:  was     
     Type:  defect      |       Status:  assigned
 Priority:  major       |    Milestone:  sage-3.2
Component:  interfaces  |   Resolution:          
 Keywords:              |  
------------------------+---------------------------------------------------
Comment (by was):

 Here's a vivid illustration of the memory leakage, which of course we know
 is there by reading the code:
 {{{
 sage: a = [magma('3^100000') for _ in range(1000)]
 sage: magma.GetMemoryUsage()
 42917912
 sage: del a
 sage: magma.GetMemoryUsage()
 42917912
 sage: a = [magma('3^100000') for _ in range(1000)]
 sage: magma.GetMemoryUsage()
 69103640
 sage: del a
 sage: magma.GetMemoryUsage()
 69103640
 }}}

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/4241#comment:2>
Sage <http://sagemath.org/>
Sage - Open Source Mathematical Software: Building the Car Instead of 
Reinventing the Wheel
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sage-trac?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to