Issue 3038 in sympy: sign change in evalf of complex value as precision is increased

2012-02-02 Thread sympy
Status: Accepted Owner: Labels: Type-Defect Priority-Medium New issue 3038 by smi...@gmail.com: sign change in evalf of complex value as precision is increased http://code.google.com/p/sympy/issues/detail?id=3038 There seems to be something strange going on with the evaluation of these

Re: Issue 2705 in sympy: integrate(cos(x)**(2*n), (x, 0, 2*pi)) traceback

2012-02-02 Thread sympy
Comment #1 on issue 2705 by guillaum...@gmail.com: integrate(cos(x)**(2*n), (x, 0, 2*pi)) traceback http://code.google.com/p/sympy/issues/detail?id=2705 I have a similar probleme here, I don't know if it needs a new bug report. import sympy, sympy.abc print sympy.__version__ 0.7.1

Issue 3039 in sympy: Results of FockStateFermion[Bra,Ket] are system dependent

2012-02-02 Thread sympy
Status: Accepted Owner: Labels: Type-Defect Priority-Medium New issue 3039 by smi...@gmail.com: Results of FockStateFermion[Bra,Ket] are system dependent http://code.google.com/p/sympy/issues/detail?id=3039 from sympy.physics.secondquant import FKet, FBra FKet([1, 2]) # gives

Re: Issue 1735 in sympy: Rename .func attribute

2012-02-02 Thread sympy
Comment #33 on issue 1735 by vlada.pe...@gmail.com: Rename .func attribute http://code.google.com/p/sympy/issues/detail?id=1735 What is the status of this? It's marked for the next release milestone, but I don't think there's any progress. As I understand it, we are considering renaming

Re: Issue 3008 in sympy: Cython (apparently) version causing problems

2012-02-02 Thread sympy
Comment #4 on issue 3008 by vlada.pe...@gmail.com: Cython (apparently) version causing problems http://code.google.com/p/sympy/issues/detail?id=3008 Is there anything we should actually do about this? Are we even supporting older versions of Cython? Is there any advantage to doing so? --

Re: Issue 3008 in sympy: Cython (apparently) version causing problems

2012-02-02 Thread sympy
Comment #5 on issue 3008 by asmeu...@gmail.com: Cython (apparently) version causing problems http://code.google.com/p/sympy/issues/detail?id=3008 We should figure out what version causes the problem and disable it (in import_module). -- You received this message because you are

Re: Issue 1735 in sympy: Rename .func attribute

2012-02-02 Thread sympy
Comment #34 on issue 1735 by asmeu...@gmail.com: Rename .func attribute http://code.google.com/p/sympy/issues/detail?id=1735 I guess we never agreed on a better name to change it to. I'm not sure this needs to be blocked on the release. It was originally blocked on 0.7.0 because that was a

Re: Issue 2705 in sympy: integrate(cos(x)**(2*n), (x, 0, 2*pi)) traceback

2012-02-02 Thread sympy
Comment #2 on issue 2705 by asmeu...@gmail.com: integrate(cos(x)**(2*n), (x, 0, 2*pi)) traceback http://code.google.com/p/sympy/issues/detail?id=2705 No, that's exactly the same bug. -- You received this message because you are subscribed to the Google Groups sympy-issues group. To post to

Re: Issue 3037 in sympy: integrate(exp(I*k*x)/(k**2 - 2*lamda + 1), (k, -oo, oo)) should be expressible in closed form

2012-02-02 Thread sympy
Comment #1 on issue 3037 by ness...@gmail.com: integrate(exp(I*k*x)/(k**2 - 2*lamda + 1), (k, -oo, oo)) should be expressible in closed form http://code.google.com/p/sympy/issues/detail?id=3037 This quite nicely illustrates a couple of problems with the code. First of all, let us consider

Re: Issue 3037 in sympy: integrate(exp(I*k*x)/(k**2 - 2*lamda + 1), (k, -oo, oo)) should be expressible in closed form

2012-02-02 Thread sympy
Comment #2 on issue 3037 by asmeu...@gmail.com: integrate(exp(I*k*x)/(k**2 - 2*lamda + 1), (k, -oo, oo)) should be expressible in closed form http://code.google.com/p/sympy/issues/detail?id=3037 By the way, I think lamda should be less than 1/2. -- You received this message because you are

Re: [sympy] Test modules

2012-02-02 Thread Aaron Meurer
On Thu, Feb 2, 2012 at 10:22 AM, Joachim Durchholz j...@durchholz.org wrote: Am 02.02.2012 17:57, schrieb Alan Bromborsky: How do I run the tests for just one module (in my case the tests for geometric algebra)? bin/test name-of-module Any part of the filename will do, the tester will run

Re: [sympy] SymPy with generic Symbol proxies; python expression algebra

2012-02-02 Thread Ronan Lamy
Le jeudi 02 février 2012 à 10:51 -0700, Aaron Meurer a écrit : Unfortunately, right now, SymPy is unbearably slow in PyPy, so this would definitely be a roadmap thing. No, it isn't, see for instance http://speed.pypy.org/timeline/#/?exe=3,6,1,5base=2 +472ben=sympy_expandenv=1revs=200equid=off

[sympy] Little out of topic

2012-02-02 Thread Hector
Hi all, I am final year student doing Integrated M.Sc. in Applied Mathematics from Indian Institute of Technology - Roorkee, India. I love working in open source but my course curriculum gives very little time or encouragement to do the same. I am planning to apply for PhD in USA (mainly because

Re: [sympy] SymPy with generic Symbol proxies; python expression algebra

2012-02-02 Thread Nathan Rice
Also, note that @chainable does some magic :)  Every operation returns a new proxy, so I can store whatever I need.  Currently I only store the state (via closure) and a parent reference, but rather than building state, I could just store (operation, [arguments]).  There are a few downsides

Re: [sympy] Fixing Sphinx docs (finally!)

2012-02-02 Thread Aaron Meurer
Great. Once we get it working, we should add it to setup.py test to build the docs, and make sympy-bot return failed if they don't compile without any errors. That's the only way we can avoid regressions. Aaron Meurer On Thu, Feb 2, 2012 at 12:18 PM, Vladimir Perić vlada.pe...@gmail.com wrote:

Re: [sympy] should Float allow high precision output from a low precision input?

2012-02-02 Thread Chris Smith
Float(.3, 20) doesn't produce 0.3000 or 0.29998890, it creates an object that prints as 0.29998890 but is internally an exact binary number, not a decimal. Yes, but the user entered it in base 10 and most of us think in base 10 (at least I think that's