Comment #4 on issue 1308 by plaes800: simplify gives error on expressions  
containing exp()
http://code.google.com/p/sympy/issues/detail?id=1308

Ok, figured out what causes this:

The last barf came from sympy/functions/elementary/exponential.py:189

187     def _eval_power(b, e):
188         """exp(b[0])**e -> exp(b[0]*e)"""
189         return exp(b.args[0] * e)

args to it are: 1/2 (b) and -1 (e)

TypeError: unbound method _eval_power() must be called with exp instance as  
first
argument (got Half instance instead)

Any hints? :)

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sympy-issues" 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-issues?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to