Comment #14 on issue 1851 by [email protected]: Integral((-60*exp(x) - 19.2*exp(4*x))*exp(4*x), x).doit() extremely slow
http://code.google.com/p/sympy/issues/detail?id=1851

Perhaps it's faster now

t=time();Integral((-60*exp(x) - 19.2*exp(4*x))*exp(4*x), x).doit()
-2.4*exp(8*x) - 12.0*exp(5*x)
time()-t
21.469109058380127


But

risch_integrate((-60*exp(x) - 19.2*exp(4*x))*exp(4*x), x)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'risch_integrate' is not defined
from sympy.integrals.risch import *
risch_integrate((-60*exp(x) - 19.2*exp(4*x))*exp(4*x), x)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "sympy/integrals/risch.py", line 1524, in risch_integrate
    ans, i, b = integrate_hyperexponential(fa, fd, DE)
  File "sympy/integrals/risch.py", line 1284, in integrate_hyperexponential
    pp = as_poly_1t(p, DE.t, z)
  File "sympy/integrals/risch.py", line 758, in as_poly_1t
    raise NotImplementedError(e)
NotImplementedError: there is no field associated with RR



--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sympy-issues?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to