Re: Issue 3743 in sympy: dummy_eq fails with Sum

2013-04-29 Thread sympy
Updates: Status: Duplicate Labels: -EasyToFix Mergedinto: 2440 Comment #7 on issue 3743 by smi...@gmail.com: dummy_eq fails with Sum http://code.google.com/p/sympy/issues/detail?id=3743 dummy_eq should not be used for comparing things with structural dummy variables; th

Re: Issue 3743 in sympy: dummy_eq fails with Sum

2013-04-28 Thread sympy
Comment #6 on issue 3743 by asmeu...@gmail.com: dummy_eq fails with Sum http://code.google.com/p/sympy/issues/detail?id=3743 What's wrong with atoms(Symbol)? -- You received this message because this project is configured to send all issue notifications to this address. You may adjust your n

Re: Issue 3743 in sympy: dummy_eq fails with Sum

2013-04-28 Thread sympy
Updates: Labels: EasyToFix Comment #5 on issue 3743 by smi...@gmail.com: dummy_eq fails with Sum http://code.google.com/p/sympy/issues/detail?id=3743 I think this will work def dummy_eq(self, other): """ Compare two expressions and handle dummy symbols. Exam

Re: Issue 3743 in sympy: dummy_eq fails with Sum

2013-04-28 Thread sympy
Comment #4 on issue 3743 by asmeu...@gmail.com: dummy_eq fails with Sum http://code.google.com/p/sympy/issues/detail?id=3743 Is it because it is checking free_symbols instead of .atoms(Symbol)? -- You received this message because this project is configured to send all issue notifications to

Re: Issue 3743 in sympy: dummy_eq fails with Sum

2013-04-11 Thread sympy
Comment #3 on issue 3743 by smi...@gmail.com: dummy_eq fails with Sum http://code.google.com/p/sympy/issues/detail?id=3743 I think it originated with Polys (though I didn't check to history, I see that it is used there a lot). Should we just leave it there and put a function somewhere in tes

Re: Issue 3743 in sympy: dummy_eq fails with Sum

2013-04-11 Thread sympy
Comment #2 on issue 3743 by ronan.l...@gmail.com: dummy_eq fails with Sum http://code.google.com/p/sympy/issues/detail?id=3743 dummy_eq() should just be killed. There's absolutely no reason to have such a method on Basic. -- You received this message because this project is configured to sen

Re: Issue 3743 in sympy: dummy_eq fails with Sum

2013-04-11 Thread sympy
Comment #1 on issue 3743 by julien.r...@gmail.com: dummy_eq fails with Sum http://code.google.com/p/sympy/issues/detail?id=3743 See also issue 2566. -- You received this message because this project is configured to send all issue notifications to this address. You may adjust your notificati

Issue 3743 in sympy: dummy_eq fails with Sum

2013-04-10 Thread sympy
Status: Valid Owner: Labels: Type-Defect Priority-Medium New issue 3743 by smi...@gmail.com: dummy_eq fails with Sum http://code.google.com/p/sympy/issues/detail?id=3743 The dummy_eq fails for Sum. I suspect that it is using subs instead of xreplace: k_ = Dummy('k') k_.dummy_eq(x) Tru