Re: Issue 2511 in sympy: Document how to use lambdas in replace (was: Bug with replace)

2013-05-01 Thread sympy
Updates: Labels: smichr NeedsReview Comment #7 on issue 2511 by smi...@gmail.com: Document how to use lambdas in replace (was: Bug with replace) http://code.google.com/p/sympy/issues/detail?id=2511 https://github.com/sympy/sympy/pull/2062 In addition to updating the docstring, I

Re: Issue 3797 in sympy: stirling function can't be imported

2013-05-01 Thread sympy
Comment #1 on issue 3797 by smi...@gmail.com: stirling function can't be imported http://code.google.com/p/sympy/issues/detail?id=3797 No problem here: from sympy.functions.combinatorial.numbers import stirling, bell (using 0.7.2-git) -- You received this message because this project

Re: Issue 3797 in sympy: stirling function can't be imported

2013-05-01 Thread sympy
Comment #2 on issue 3797 by buratin@gmail.com: stirling function can't be imported http://code.google.com/p/sympy/issues/detail?id=3797 The problem is within sympy-0.7.2-py3.2.tar.gz (python 3 release!). Also try: Try the following: * Open http://live.sympy.org * Enter from

Issue 3798 in sympy: pprint evaluates unevaluated term

2013-05-01 Thread sympy
Status: Valid Owner: Labels: Type-Defect Priority-Medium New issue 3798 by smi...@gmail.com: pprint evaluates unevaluated term http://code.google.com/p/sympy/issues/detail?id=3798 Here, print and pprint behave the same: eq=Add(Mul(2,x-2,evaluate=False),5,evaluate=False);eq 2*(x - 2) + 5

Re: Issue 2440 in sympy: Equal Integrals compare different when using different variables

2013-05-01 Thread sympy
Comment #21 on issue 2440 by smi...@gmail.com: Equal Integrals compare different when using different variables http://code.google.com/p/sympy/issues/detail?id=2440 This is a repost from PR 3775: Something that I think would be useful for addressing this issue is a fold or fold_symbols

Re: Issue 2440 in sympy: Equal Integrals compare different when using different variables

2013-05-01 Thread sympy
Comment #22 on issue 2440 by smi...@gmail.com: Equal Integrals compare different when using different variables http://code.google.com/p/sympy/issues/detail?id=2440 I see why this is a bad idea - the bound symbols only should be remapped, not the others or else a cached result for one

Re: Issue 3796 in sympy: AttributeError: 'Tuple' object has no attribute 'is_polynomial' in manualintegrate

2013-05-01 Thread sympy
Comment #1 on issue 3796 by li.david...@gmail.com: AttributeError: 'Tuple' object has no attribute 'is_polynomial' in manualintegrate http://code.google.com/p/sympy/issues/detail?id=3796 https://github.com/sympy/sympy/pull/2065 addresses this issue. -- You received this message because this

Issue 3799 in sympy: trigsimp goes too far?

2013-05-01 Thread sympy
Status: Valid Owner: Labels: Type-Defect Priority-Medium Simplify New issue 3799 by asmeu...@gmail.com: trigsimp goes too far? http://code.google.com/p/sympy/issues/detail?id=3799 In [3]: simplify(exp(x)*sin(x)/2 + exp(x)*cos(x)/2) Out[3]: ___ x⎛π⎞ ╲╱ 2 ⋅ℯ ⋅sin⎜x + ─⎟

Re: Issue 3795 in sympy: math domain error from plot

2013-05-01 Thread sympy
Comment #4 on issue 3795 by asmeu...@gmail.com: math domain error from plot http://code.google.com/p/sympy/issues/detail?id=3795 Do you have numpy installed? -- You received this message because this project is configured to send all issue notifications to this address. You may adjust your

Re: Issue 3795 in sympy: math domain error from plot

2013-05-01 Thread sympy
Comment #5 on issue 3795 by asmeu...@gmail.com: math domain error from plot http://code.google.com/p/sympy/issues/detail?id=3795 Actually, the fix here is easy. Just add ValueError to the list of errors caught at that line. -- You received this message because this project is configured to

Re: Issue 1685 in sympy: Wrong result from collect(...) in simplify.py

2013-05-01 Thread sympy
Updates: Status: Fixed Comment #13 on issue 1685 by smi...@gmail.com: Wrong result from collect(...) in simplify.py http://code.google.com/p/sympy/issues/detail?id=1685 (No comment was entered for this change.) -- You received this message because this project is configured to send

Re: Issue 3799 in sympy: trigsimp goes too far?

2013-05-01 Thread sympy
Comment #1 on issue 3799 by smi...@gmail.com: trigsimp goes too far? http://code.google.com/p/sympy/issues/detail?id=3799 yes, it uses the induced formula transformation to reduce 2 functions to one...and having fewest functions is the criteria that fu uses. You can always go back with

Re: Issue 3799 in sympy: Smarter simplicity criteria for Fu trigsimp

2013-05-01 Thread sympy
Updates: Summary: Smarter simplicity criteria for Fu trigsimp Comment #2 on issue 3799 by asmeu...@gmail.com: Smarter simplicity criteria for Fu trigsimp http://code.google.com/p/sympy/issues/detail?id=3799 So clearly it needs a smarter criteria. I consider that form to be less

Issue 3800 in sympy: IdentityFunction doesn't rebuild from args

2013-05-01 Thread sympy
Status: Valid Owner: Labels: Type-Defect Priority-Medium New issue 3800 by smi...@gmail.com: IdentityFunction doesn't rebuild from args http://code.google.com/p/sympy/issues/detail?id=3800 Lambda(x, x) Lambda(_x, _x) _.func(*_.args) Traceback (most recent call last): File stdin,

Re: Issue 3799 in sympy: Smarter simplicity criteria for Fu trigsimp

2013-05-01 Thread sympy
Comment #3 on issue 3799 by smi...@gmail.com: Smarter simplicity criteria for Fu trigsimp http://code.google.com/p/sympy/issues/detail?id=3799 What if you have a product of two such functions, is cos(x+pi/4)*cos(y+pi/4) more complicated than sin(x)*sin(y)/2 - sin(x)*cos(y)/2 -