On Nov 25, 2007 10:07 PM, kent-and <[EMAIL PROTECTED]> wrote: > > > Hi, I just implemented a small toolbox for finite element calculations > based on Lagrangian elements > and compared it to similar code using GiNaC. The difference in > efficiency is remarkable. My sympy > code takes about 20 seconds where corresponding GiNaC code is below > one second. > > Any comments on this ?
>From profiling your code, it appears that nearly all the time is spent in integrate(). This shows quite clearly that we need to optimize the integration code for polynomials. Fredrik --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sympy" 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/sympy?hl=en -~----------~----~----~----~------~----~------~--~---
