#6985: complex_plot needs to use fast_callable
----------------------+-----------------------------------------------------
 Reporter:  jason     |       Owner:  was       
     Type:  defect    |      Status:  new       
 Priority:  major     |   Milestone:  sage-4.1.2
Component:  graphics  |    Keywords:            
 Reviewer:            |      Author:            
   Merged:            |  
----------------------+-----------------------------------------------------
 Timing differences:

 {{{
 {{{
 sage: f(x) = x^2
 sage: %time P = complex_plot(f, (-10, 10), (-10, 10))
 CPU times: user 1.99 s, sys: 0.00 s, total: 2.00 s
 Wall time: 2.02 s
 sage: g = fast_callable(f, domain=CC, vars='x')
 sage: %time Q = complex_plot(g, (-10, 10), (-10, 10))
 CPU times: user 0.54 s, sys: 0.01 s, total: 0.55 s
 Wall time: 0.57 s
 sage: h = fast_callable(f, domain=CDF, vars='x')
 sage: %time R = complex_plot(h, (-10, 10), (-10, 10))
 CPU times: user 0.20 s, sys: 0.00 s, total: 0.20 s
 Wall time: 0.21 s
 }}}

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/6985>
Sage <http://sagemath.org/>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

--~--~---------~--~----~------------~-------~--~----~
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