Re: [sympy] Re: Interested In Implementing Integration Algorithm so that sympy can Integrate anything that is Integrable

2012-03-15 Thread Aaron Meurer
SymPy 0.7.1 is the latest released version. We just haven't released in a while. I just checked, and this integral has not ever worked in master. It didn't work in integration3 either. These things can depend on things like assumptions or even architecture, though. Aaron Meurer On Thu, Mar 15

Re: [sympy] Re: Interested In Implementing Integration Algorithm so that sympy can Integrate anything that is Integrable

2012-03-15 Thread Sergiu Ivanov
Hello, On Thu, Mar 15, 2012 at 8:24 AM, john.hoebing wrote: > > You are completely correct.  Its funny that the default Ubuntu sympy > doesn't work; it runs on Ubuntu 12.04 beta and installs through the > generic 'sudo apt-get install python-sympy', and as you can see above, > its a 'SymPy 0.7.1.

[sympy] Re: Interested In Implementing Integration Algorithm so that sympy can Integrate anything that is Integrable

2012-03-14 Thread john.hoebing
On Mar 14, 7:50 pm, Aaron Meurer wrote: > Actually, this has nothing to do with the algorithm I implemented. > The Risch algorithm is accessible in my branch through the > risch_integrate() function, and it only works with a limited class of > functions that does not include this one. > > By the

Re: [sympy] Re: Interested In Implementing Integration Algorithm so that sympy can Integrate anything that is Integrable

2012-03-14 Thread Aaron Meurer
Actually, this has nothing to do with the algorithm I implemented. The Risch algorithm is accessible in my branch through the risch_integrate() function, and it only works with a limited class of functions that does not include this one. By the way, this integral works in master: In [70]: integra

[sympy] Re: Interested In Implementing Integration Algorithm so that sympy can Integrate anything that is Integrable

2012-03-14 Thread john.hoebing
Wow! You really made some progress and I can't believe it hasn't been merged into the main code. I had given up on sympy for a lot of my work because the integration starts to break on really simple integrals, for instance from the latest 0.7.1.rc1: In [1]: c=symbols('c') In [2]: integrate(1/sq

[sympy] Re: Interested In Implementing Integration Algorithm so that sympy can Integrate anything that is Integrable

2012-03-13 Thread Saptarshi Mandal
How can you do anything useful with it if you don't have a detailed idea about how the Risch algorithm works? What you should do next is find out something (on your own or use the issues page) that is broken, fix it and send a patch. The community will then review the patch and provide you feedback