Re: Issue 2163 in sympy: Factor out the Gruntz debugging code for use in other functions

2013-07-25 Thread sympy
Comment #2 on issue 2163 by skirpic...@gmail.com: Factor out the Gruntz debugging code for use in other functions http://code.google.com/p/sympy/issues/detail?id=2163 https://github.com/sympy/sympy/pull/2321 -- You received this message because this project is configured to send all issue

Re: Issue 1756 in sympy: Division by order terms is invalid

2013-07-25 Thread sympy
Updates: Labels: NeedsReview Comment #11 on issue 1756 by skirpic...@gmail.com: Division by order terms is invalid http://code.google.com/p/sympy/issues/detail?id=1756 https://github.com/sympy/sympy/pull/2322 -- You received this message because this project is configured to send all

Re: Issue 3683 in sympy: AssertionError: sqrt(sin(x**3)).series(x,0,3)

2013-07-25 Thread sympy
Comment #1 on issue 3683 by skirpic...@gmail.com: AssertionError: sqrt(sin(x**3)).series(x,0,3) http://code.google.com/p/sympy/issues/detail?id=3683 https://github.com/sympy/sympy/pull/2322 -- You received this message because this project is configured to send all issue notifications to t

Re: Issue 3554 in sympy: Error in function series()

2013-07-25 Thread sympy
Updates: Labels: NeedsReview Comment #3 on issue 3554 by skirpic...@gmail.com: Error in function series() http://code.google.com/p/sympy/issues/detail?id=3554 https://github.com/sympy/sympy/pull/2322 -- You received this message because this project is configured to send all issue not

Re: Issue 3111 in sympy: series(cot(x**20 + x**21 + x**22), x, 0, 1) is wrong

2013-07-25 Thread sympy
Updates: Labels: NeedsReview Comment #3 on issue 3111 by skirpic...@gmail.com: series(cot(x**20 + x**21 + x**22), x, 0, 1) is wrong http://code.google.com/p/sympy/issues/detail?id=3111 https://github.com/sympy/sympy/pull/2322 -- You received this message because this project is confi

Re: Issue 1905 in sympy: Differentiation and Geometric Algebra

2013-07-25 Thread sympy
Updates: Status: Valid Comment #6 on issue 1905 by julien.r...@gmail.com: Differentiation and Geometric Algebra http://code.google.com/p/sympy/issues/detail?id=1905 It should be better integrated with SymPy's diff() by defining the appropriate _eval_derivative stuff. -- You receiv

Re: Issue 1203 in sympy: blacklist for tests/doctests

2013-07-25 Thread sympy
Updates: Status: Fixed Comment #2 on issue 1203 by julien.r...@gmail.com: blacklist for tests/doctests http://code.google.com/p/sympy/issues/detail?id=1203 We have @doctest_depends_on to do that now. -- You received this message because this project is configured to send all issue

Re: Issue 1721 in sympy: Rename class 'Real'

2013-07-25 Thread sympy
Comment #20 on issue 1721 by skirpic...@gmail.com: Rename class 'Real' http://code.google.com/p/sympy/issues/detail?id=1721 https://github.com/sympy/sympy/pull/2313 -- You received this message because this project is configured to send all issue notifications to this address. You may adjust

Re: Issue 1919 in sympy: unify behavior of var() and symbols()

2013-07-25 Thread sympy
Comment #31 on issue 1919 by skirpic...@gmail.com: unify behavior of var() and symbols() http://code.google.com/p/sympy/issues/detail?id=1919 https://github.com/sympy/sympy/pull/2313 -- You received this message because this project is configured to send all issue notifications to this add

Re: Issue 1905 in sympy: Differentiation and Geometric Algebra

2013-07-25 Thread sympy
Comment #7 on issue 1905 by abro...@verizon.net: Differentiation and Geometric Algebra http://code.google.com/p/sympy/issues/detail?id=1905 The question is which derivative should diff mean. If F is a multivector function and grad is the derivative operator then grad*F, F*grad, grad^F, F^gr

Re: Issue 1905 in sympy: Differentiation and Geometric Algebra

2013-07-25 Thread sympy
Comment #8 on issue 1905 by julien.r...@gmail.com: Differentiation and Geometric Algebra http://code.google.com/p/sympy/issues/detail?id=1905 Certainly the same ambiguity exists for F.diff(x), but a choice was made and diff(F, x) would mean the same as what F.diff(x) currently means. Or e

Re: Issue 1905 in sympy: Differentiation and Geometric Algebra

2013-07-25 Thread sympy
Comment #9 on issue 1905 by abro...@verizon.net: Differentiation and Geometric Algebra http://code.google.com/p/sympy/issues/detail?id=1905 OK F.diff(x) refers to the partial derivative and there is only one partial derivative so that could be made consistent with the rest of sympy. I will l

Re: Issue 1905 in sympy: Differentiation and Geometric Algebra

2013-07-25 Thread sympy
Comment #10 on issue 1905 by julien.r...@gmail.com: Differentiation and Geometric Algebra http://code.google.com/p/sympy/issues/detail?id=1905 It's described in sympy/core/function.py (see the Derivative class) and for MV I think it would just be def _eval_derivative(self, x): return

Re: Issue 1905 in sympy: Differentiation and Geometric Algebra

2013-07-25 Thread sympy
Comment #11 on issue 1905 by asmeu...@gmail.com: Differentiation and Geometric Algebra http://code.google.com/p/sympy/issues/detail?id=1905 Does MV subclass from Expr? Usually the logic itself is in _eval_deriative, and diff() and .diff() call it automatically from the superclass. -- You

Issue 3955 in sympy: sympy.Function.replace with the together() method

2013-07-25 Thread sympy
Status: New Owner: Labels: Type-Enhancement Priority-Low New issue 3955 by ben.luc...@gmail.com: sympy.Function.replace with the together() method http://code.google.com/p/sympy/issues/detail?id=3955 Say I have y = exp(-x/2 + 1) + 1 and I do: a = Wild('a') y = y.replace(exp(a), exp(a.t

Re: Issue 3955 in sympy: sympy.Function.replace with the together() method

2013-07-25 Thread sympy
Updates: Status: Duplicate Mergedinto: 1497 Comment #1 on issue 3955 by asmeu...@gmail.com: sympy.Function.replace with the together() method http://code.google.com/p/sympy/issues/detail?id=3955 This is essentially due to issue 1497, (-x + 2)/2 automatically distributes to -

Re: Issue 1497 in sympy: Remove automatic distribution 2*(x + y) => 2*x + 2*y

2013-07-25 Thread sympy
Comment #16 on issue 1497 by asmeu...@gmail.com: Remove automatic distribution 2*(x + y) => 2*x + 2*y http://code.google.com/p/sympy/issues/detail?id=1497 Issue 3955 has been merged into this issue. -- You received this message because this project is configured to send all issue notificat

Re: Issue 3936 in sympy: Problems installing

2013-07-25 Thread sympy
Comment #2 on issue 3936 by philip.c...@gmail.com: Problems installing http://code.google.com/p/sympy/issues/detail?id=3936 Source, second one on this page. https://github.com/sympy/sympy/releases -- You received this message because this project is configured to send all issue notifications

Re: Issue 3936 in sympy: Problems installing

2013-07-25 Thread sympy
Comment #3 on issue 3936 by asmeu...@gmail.com: Problems installing http://code.google.com/p/sympy/issues/detail?id=3936 Can you give a full copy of the output? I have no idea what is going on here. -- You received this message because this project is configured to send all issue notificat