1 | initial version |
See also http://trac.sagemath.org/sage_trac/ticket/11856. You either use less variables so that there is enough space for the bit-packed variables
sage: R.<x,y> = QQ[]
sage: x**(2**28 - 2)
x^268435454
or you use the symbolic ring. Its not like you have memory for a dense polynomial of that degree anyways...
2 | No.2 Revision |
See also http://trac.sagemath.org/sage_trac/ticket/11856. You either use less variables so that there is enough space for the bit-packed variablesexponents
sage: R.<x,y> = QQ[]
sage: x**(2**28 - 2)
x^268435454
or you use the symbolic ring. Its not like you have memory for a dense polynomial of that degree anyways...