Hi Nicolas, On 30 Mrz., 09:44, Simon King <simon.k...@uni-jena.de> wrote: > When is that called? I provided a __init_extra__ for > Rings.ParentMethods, but it is not called when I create R.<x,y> = > QQ['t'][], even though (with the patches from #9944 and #9138 at > least) it belongs to a subcategory of the category of rings, and > R._is_category_initialized() yields True.
It turns out that one needs to change Parent._init_category_: The idea is to consider all super-categories. If the ParentMethods of a super- category provide a __init_extra__, then it shall be called. I provided a short path for several methods of rings that are frequently used in arithmetic (base, base_ring, has_coerce_map_from and coerce_map_from). I obtain: sage: R.<x,y> = QQ['t'][] sage: timeit('(2*x-1)^2+5') 625 loops, best of 3: 152 µs per loop That is a lot (157%) faster than in an unpatched Sage! So, I guess I will submit it on a new ticket, and make #9944 depend on it (because, as it is, #9944 slows arithmetic down). If everything works, then the new patch + #9944 + #9138 will yield a considerable speedup. Cheers Simon -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-devel URL: http://www.sagemath.org