Issue 2361 in sympy: Mul.flatten needs to watch for the unevaluated Mul

2011-05-10 Thread sympy
Status: Accepted Owner: smi...@gmail.com Labels: Type-Defect Priority-Medium New issue 2361 by smi...@gmail.com: Mul.flatten needs to watch for the unevaluated Mul http://code.google.com/p/sympy/issues/detail?id=2361 1 9*x/(4*(1 - y)) 9*x/(4 - 4*y) 2 d = Mul(4, 1 - y,

Issue 2362 in sympy: subs or N has an issue with quartic root

2011-05-10 Thread sympy
Status: Accepted Owner: smi...@gmail.com Labels: Type-Defect Priority-Medium New issue 2362 by smi...@gmail.com: subs or N has an issue with quartic root http://code.google.com/p/sympy/issues/detail?id=2362 The following are the cse form of the roots obtained as the solution of eq followed by

Re: Issue 2362 in sympy: subs or N has an issue with quartic root

2011-05-10 Thread sympy
Comment #1 on issue 2362 by smi...@gmail.com: subs or N has an issue with quartic root http://code.google.com/p/sympy/issues/detail?id=2362 If the root is factored first it succeeds. Here is the cse of the factored form: ([(x0, 6**(1/2)), (x1, 9/16 + I*42591**(1/2)/144),

Re: Issue 2357 in sympy: bugs in PythonRationalType

2011-05-10 Thread sympy
Comment #3 on issue 2357 by mario.pe...@gmail.com: bugs in PythonRationalType http://code.google.com/p/sympy/issues/detail?id=2357 Hi Mateusz, Several bugs mentioned here are actually design decisions, e.g.: print PythonRationalType(3) 3/1 PythonRationalType is meant for internal purpose

Re: Issue 2360 in sympy: Bug in geometry intersection

2011-05-10 Thread sympy
Comment #3 on issue 2360 by gdrummo...@gmail.com: Bug in geometry intersection http://code.google.com/p/sympy/issues/detail?id=2360 The problem appears to be line 1375 in line.py. This is in the __contains__ method of the class Segment. There is a problem determining if a symbolic point

Re: Issue 2361 in sympy: Mul.flatten needs to watch for the unevaluated Mul

2011-05-10 Thread sympy
Comment #1 on issue 2361 by asmeurer: Mul.flatten needs to watch for the unevaluated Mul http://code.google.com/p/sympy/issues/detail?id=2361 I don't get why it should have flattened to 1. -- You received this message because you are subscribed to the Google Groups sympy-issues group. To

Re: Issue 2362 in sympy: subs or N has an issue with quartic root

2011-05-10 Thread sympy
Comment #2 on issue 2362 by asmeurer: subs or N has an issue with quartic root http://code.google.com/p/sympy/issues/detail?id=2362 If the older commits are complaining about some mpmath import, you just need to run py.cleanup to clear the .pyc files. The commits from the very beginning

Re: Issue 2307 in sympy: Duplicate methods: as_coeff_mul and as_coeff_Mul

2011-05-10 Thread sympy
Comment #6 on issue 2307 by asmeurer: Duplicate methods: as_coeff_mul and as_coeff_Mul http://code.google.com/p/sympy/issues/detail?id=2307 Well, that was pretty obvious, wasn't it. I guess I just wasn't thinking very straight yesterday. Actually, since you can only have one Number

Re: Issue 2357 in sympy: bugs in PythonRationalType

2011-05-10 Thread sympy
Comment #4 on issue 2357 by asmeurer: bugs in PythonRationalType http://code.google.com/p/sympy/issues/detail?id=2357 We do have Galios fields, but they are only internal in the polys. See for example sympy/polys/domains/finitefield.py. For the matrices, hopefully that sort of thing will

Re: Issue 2360 in sympy: Bug in geometry intersection

2011-05-10 Thread sympy
Comment #4 on issue 2360 by asmeurer: Bug in geometry intersection http://code.google.com/p/sympy/issues/detail?id=2360 What do you mean about simplification techniques? What isn't being simplified? If that point is in the segment, it should return True. And by the way, it must have used

Re: Issue 2306 in sympy: Duplicate implementation of factorial in sympy/core/numbers.py

2011-05-10 Thread sympy
Updates: Labels: NeedsReview asmeurer Comment #4 on issue 2306 by asmeurer: Duplicate implementation of factorial in sympy/core/numbers.py http://code.google.com/p/sympy/issues/detail?id=2306 Thanks to Mateusz for the fix. See https://github.com/sympy/sympy/pull/300. -- You

Issue 2363 in sympy: integrate(1/(x**2+y**2)**(Rational(3,2)),x) fails

2011-05-10 Thread sympy
Status: New Owner: Labels: Type-Defect Priority-Medium New issue 2363 by andreas@googlemail.com: integrate(1/(x**2+y**2)**(Rational(3,2)),x) fails http://code.google.com/p/sympy/issues/detail?id=2363 This integral is used in physics e.g. for deriving the magnetic flux density for

Re: Issue 2363 in sympy: integrate(1/(x**2+y**2)**(Rational(3,2)),x) fails

2011-05-10 Thread sympy
Updates: Status: Accepted Labels: Integration Comment #1 on issue 2363 by asmeurer: integrate(1/(x**2+y**2)**(Rational(3,2)),x) fails http://code.google.com/p/sympy/issues/detail?id=2363 (No comment was entered for this change.) -- You received this message because you are

Re: Issue 309 in sympy: plotting on macos x freezes

2011-05-10 Thread sympy
Updates: Status: Fixed Comment #12 on issue 309 by asmeurer: plotting on macos x freezes http://code.google.com/p/sympy/issues/detail?id=309 The minimal testing I did from issue 1916 indicated that this was fixed. Anyway, Plot(sin(x)*cos(y)) doesn't freeze for me any more. -- You

Re: Issue 2353 in sympy: Warnings printed in the geometry tests

2011-05-10 Thread sympy
Updates: Labels: NeedsReview asmeurer Comment #2 on issue 2353 by asmeurer: Warnings printed in the geometry tests http://code.google.com/p/sympy/issues/detail?id=2353 See https://github.com/sympy/sympy/pull/301. -- You received this message because you are subscribed to the Google

Re: Issue 2354 in sympy: isympy -o doesn't parse bad arguments correctly

2011-05-10 Thread sympy
Updates: Labels: -Milestone-Release0.7.0 -mattpap Comment #6 on issue 2354 by asmeurer: isympy -o doesn't parse bad arguments correctly http://code.google.com/p/sympy/issues/detail?id=2354 This isn't really blocking the release (though you can still fix it by then if you want).

Re: Issue 51 in sympy: RootOf for polynomial equations

2011-05-10 Thread sympy
Comment #31 on issue 51 by asmeurer: RootOf for polynomial equations http://code.google.com/p/sympy/issues/detail?id=51 Is there anything left to do here that wasn't pushed in with polys12? -- You received this message because you are subscribed to the Google Groups sympy-issues group. To

Re: Issue 1646 in sympy: Solving inequalities

2011-05-10 Thread sympy
Updates: Status: Fixed Labels: -NeedsReview -Milestone-Release0.7.0 Comment #40 on issue 1646 by asmeurer: Solving inequalities http://code.google.com/p/sympy/issues/detail?id=1646 Those are now issue 2364 and issue 2365, respectively. Closing this oneā€¦ -- You received this

Re: Issue 1095 in sympy: Trig functions break cancel

2011-05-10 Thread sympy
Updates: Cc: smi...@gmail.com Comment #11 on issue 1095 by asmeurer: Trig functions break cancel http://code.google.com/p/sympy/issues/detail?id=1095 Chris, did you ever submit the pull request? -- You received this message because you are subscribed to the Google Groups sympy-issues

Re: Issue 1306 in sympy: Test the rst docs' pretty printing

2011-05-10 Thread sympy
Updates: Status: Fixed Comment #32 on issue 1306 by asmeurer: Test the rst docs' pretty printing http://code.google.com/p/sympy/issues/detail?id=1306 I'm not sure if anything remains to be done here. We do test the Sphinx docs, and there are no failures relating to this. I'm going

Re: Issue 1337 in sympy: Refactor find() and replace()

2011-05-10 Thread sympy
Updates: Cc: ronan.l...@gmail.com matt...@gmail.com Comment #38 on issue 1337 by asmeurer: Refactor find() and replace() http://code.google.com/p/sympy/issues/detail?id=1337 I agree that the documentation needs to be better. It should be clear on the list of things in the replace

Re: Issue 1868 in sympy: solve(floating point, x) stopped working

2011-05-10 Thread sympy
Comment #10 on issue 1868 by asmeurer: solve(floating point, x) stopped working http://code.google.com/p/sympy/issues/detail?id=1868 Any progress with this? Otherwise, I am postponing. -- You received this message because you are subscribed to the Google Groups sympy-issues group. To post

Re: Issue 1977 in sympy: symbols() gives unexpected behavior when passed a list of length 1

2011-05-10 Thread sympy
Updates: Cc: ondrej.c...@gmail.com Labels: -Priority-Medium Priority-Critical Comment #22 on issue 1977 by asmeurer: symbols() gives unexpected behavior when passed a list of length 1 http://code.google.com/p/sympy/issues/detail?id=1977 OK, so we need to make a decision here.

Re: Issue 1571 in sympy: simplify hangs on a**3*(1/(c1+a)**3-6/(c2-a)**3)

2011-05-10 Thread sympy
Updates: Status: Fixed Comment #4 on issue 1571 by asmeurer: simplify hangs on a**3*(1/(c1+a)**3-6/(c2-a)**3) http://code.google.com/p/sympy/issues/detail?id=1571 (No comment was entered for this change.) -- You received this message because you are subscribed to the Google Groups

Re: Issue 1575 in sympy: help(module) contains a bunch of irrelevant stuff

2011-05-10 Thread sympy
Updates: Labels: -Milestone-Release0.7.0 Milestone-Release0.7.1 Comment #12 on issue 1575 by asmeurer: help(module) contains a bunch of irrelevant stuff http://code.google.com/p/sympy/issues/detail?id=1575 Postponing (unless someone wants to fix it soon). -- You received this

Re: Issue 51 in sympy: RootOf for polynomial equations

2011-05-10 Thread sympy
Comment #32 on issue 51 by matt...@gmail.com: RootOf for polynomial equations http://code.google.com/p/sympy/issues/detail?id=51 The syntax has to be improved. I'm hoping to submit a pull request with this by the end of this week. -- You received this message because you are subscribed

Re: Issue 527 in sympy: guessing what functions, like integrate, roots, factor, apart (and many more), should do with the given expression

2011-05-10 Thread sympy
Updates: Cc: matt...@gmail.com Comment #10 on issue 527 by asmeurer: guessing what functions, like integrate, roots, factor, apart (and many more), should do with the given expression http://code.google.com/p/sympy/issues/detail?id=527 This doesn't seem to have been pushed in. In

Re: Issue 1741 in sympy: py.bench broken

2011-05-10 Thread sympy
Updates: Labels: -Milestone-Release0.7.0 Milestone-Release0.7.1 Comment #9 on issue 1741 by asmeurer: py.bench broken http://code.google.com/p/sympy/issues/detail?id=1741 This is non-trivial to fix, so unless someone wants to do it soon, I am going to postpone the release milestone.

4 issues changed in sympy

2011-05-10 Thread sympy
Updates: Status: Fixed Labels: -asmeurer -NeedsReview PassedReview Comment by asmeurer: This was pushed in. Affected issues: issue 1576: Integral of strictly positive function is zero http://code.google.com/p/sympy/issues/detail?id=1576 issue 1793: Integration failure

Re: Issue 2314 in sympy: integrate(-a/(a**2+b**2),b) is wrong

2011-05-10 Thread sympy
Updates: Labels: -NeedsReview PassedReview Comment #5 on issue 2314 by asmeurer: integrate(-a/(a**2+b**2),b) is wrong http://code.google.com/p/sympy/issues/detail?id=2314 This was pushed in. -- You received this message because you are subscribed to the Google Groups sympy-issues