#4965: [with patch, needs work] Z/nZ[x] via FLINT's zmod_poly
------------------------------+---------------------------------------------
 Reporter:  malb              |        Owner:  somebody
     Type:  defect            |       Status:  new     
 Priority:  major             |    Milestone:  sage-3.4
Component:  basic arithmetic  |   Resolution:          
 Keywords:                    |  
------------------------------+---------------------------------------------
Comment (by malb):

 == Speed-Up on sage.math ==

 === Old ===

 {{{
 sage: P.<x> = PolynomialRing(GF(7))
 sage: type(x)
 <type
 'sage.rings.polynomial.polynomial_modn_dense_ntl.Polynomial_dense_mod_p'>
 sage: f = P.random_element(100)
 sage: g = P.random_element(100)
 sage: %timeit f*g
 1000 loops, best of 3: 445 µs per loop
 }}}

 === New ===

 {{{
 sage: P.<x> = PolynomialRing(GF(7))
 sage: type(x)
 <type 'sage.rings.polynomial.polynomial_zmod_flint.Polynomial_zmod_flint'>
 sage: f = P.random_element(100)
 sage: g = P.random_element(100)
 sage: %timeit f*g
 100000 loops, best of 3: 7.92 µs per loop
 }}}

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/4965#comment:1>
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