Does anyone have any thoughts on the following? Luke Wolcott showed me this example- the traceback looks suspect, but I don't know about the internals here. Is this just something that is too big?
{{{id=14| P = QQ[2^(1/2), 2^(1/3), 2^(1/5)] }}} {{{id=11| P.gens() /// (sqrt2, a, b) }}} {{{id=10| aaa,bbb,ccc = P.gens() }}} {{{id=17| print aaa.absolute_minpoly(); print bbb.absolute_minpoly(); print ccc.absolute_minpoly(); /// x^2 - 2 x^3 - 2 x^5 - 2 }}} {{{id=19| P.order(aaa) /// Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Volumes/HOME/sage/sage_notebook/worksheets/admin/6/code/ 56.py", line 4, in <module> exec compile(ur'P.order(aaa)' + '\n', '', 'single') File "/Volumes/HOME/sage/data/extcode/sage/", line 1, in <module> File "/Volumes/HOME/sage/local/lib/python2.5/site-packages/sage/ rings/number_field/number_field.py", line 3890, in order base = self.base_field().maximal_order() File "/Volumes/HOME/sage/local/lib/python2.5/site-packages/sage/ rings/number_field/number_field.py", line 3224, in maximal_order OK = self.order(B, check_is_integral=False, check_rank=False) File "/Volumes/HOME/sage/local/lib/python2.5/site-packages/sage/ rings/number_field/number_field.py", line 3891, in order return order.relative_order_from_ring_generators(gens, base, **kwds) File "/Volumes/HOME/sage/local/lib/python2.5/site-packages/sage/ rings/number_field/order.py", line 1465, in relative_order_from_ring_generators absolute_order_module_gens = monomials(module_gens, n) File "/Volumes/HOME/sage/local/lib/python2.5/site-packages/sage/ rings/monomials.py", line 40, in monomials return _monomials(v, R, n, 0) File "/Volumes/HOME/sage/local/lib/python2.5/site-packages/sage/ rings/monomials.py", line 15, in _monomials v = monomials(w, n) File "/Volumes/HOME/sage/local/lib/python2.5/site-packages/sage/ rings/monomials.py", line 40, in monomials return _monomials(v, R, n, 0) File "/Volumes/HOME/sage/local/lib/python2.5/site-packages/sage/ rings/monomials.py", line 15, in _monomials v = monomials(w, n) File "/Volumes/HOME/sage/local/lib/python2.5/site-packages/sage/ rings/monomials.py", line 40, in monomials return _monomials(v, R, n, 0) File "/Volumes/HOME/sage/local/lib/python2.5/site-packages/sage/ rings/monomials.py", line 15, in _monomials v = monomials(w, n) File "/Volumes/HOME/sage/local/lib/python2.5/site-packages/sage/ rings/monomials.py", line 40, in monomials return _monomials(v, R, n, 0) File "/Volumes/HOME/sage/local/lib/python2.5/site-packages/sage/ rings/monomials.py", line 15, in _monomials v = monomials(w, n) File "/Volumes/HOME/sage/local/lib/python2.5/site-packages/sage/ rings/monomials.py", line 40, in monomials return _monomials(v, R, n, 0) File "/Volumes/HOME/sage/local/lib/python2.5/site-packages/sage/ rings/monomials.py", line 15, in _monomials v = monomials(w, n) File "/Volumes/HOME/sage/local/lib/python2.5/site-packages/sage/ rings/monomials.py", line 40, in monomials return _monomials(v, R, n, 0) File "/Volumes/HOME/sage/local/lib/python2.5/site-packages/sage/ rings/monomials.py", line 15, in _monomials v = monomials(w, n) File "/Volumes/HOME/sage/local/lib/python2.5/site-packages/sage/ rings/monomials.py", line 40, in monomials return _monomials(v, R, n, 0) File "/Volumes/HOME/sage/local/lib/python2.5/site-packages/sage/ rings/monomials.py", line 19, in _monomials v.append(v[j]*z) File "element.pyx", line 1372, in sage.structure.element.RingElement.__mul__ File "coerce.pxi", line 126, in sage.structure.element._mul_c KeyboardInterrupt >>> >>> }}} --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to sage-devel@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-devel URLs: http://sage.scipy.org/sage/ and http://modular.math.washington.edu/sage/ -~----------~----~----~----~------~----~------~--~---