On 5 Mrz., 02:18, Simon King <[email protected]> wrote: > Note that the memory is not constantly increasing: it jumps:
And it only concerns univariate polynomial rings: sage: R.<x,y>=QQ[] sage: n=0 sage: M=get_memory_usage() sage: while(1): ....: if get_memory_usage()>M: ....: M = get_memory_usage() ....: print n ....: n+=1 ....: f=x+1 ....: No output, so, the memory is constant. -- 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-support URL: http://www.sagemath.org
