Re: Issue 2571 in sympy: Regression in Integral.subs

2011-07-20 Thread sympy
Comment #3 on issue 2571 by asmeurer: Regression in Integral.subs http://code.google.com/p/sympy/issues/detail?id=2571 Well, this needs to be changed. This makes sense for definite integrals, but not for indefinite integrals, where the integration variable is free. -- You received this

Re: Issue 2571 in sympy: Regression in Integral.subs

2011-07-20 Thread sympy
Comment #4 on issue 2571 by smi...@gmail.com: Regression in Integral.subs http://code.google.com/p/sympy/issues/detail?id=2571 I'm willing to look at any sensible rewrite. -- You received this message because you are subscribed to the Google Groups sympy-issues group. To post to this group,

Re: Issue 1235 in sympy: Problem installing in Windows

2011-07-20 Thread sympy
Comment #10 on issue 1235 by pvgen...@gmail.com: Problem installing in Windows http://code.google.com/p/sympy/issues/detail?id=1235 Yes that's definitely the problem. I've just checked that everything works ok with Python32 under Win64 and it does. So although 64bit is the future it's not

Re: Issue 1233 in sympy: fix the rest of jython bugs

2011-07-20 Thread sympy
Comment #13 on issue 1233 by ronan.l...@gmail.com: fix the rest of jython bugs http://code.google.com/p/sympy/issues/detail?id=1233 There's some complex and implementation-dependent interaction between __slots__ and metaclasses. I'm not sure how this can be fixed except by getting rid of

Re: Issue 1235 in sympy: Problem installing in Windows

2011-07-20 Thread sympy
Comment #11 on issue 1235 by asmeurer: Problem installing in Windows http://code.google.com/p/sympy/issues/detail?id=1235 I didn't read the issue too closely. Is there no way to make a win64 installer? Also, saying Python32 is a bad way to say 32-bit Python, as it sounds like Python 3.2.

Re: Issue 1233 in sympy: fix the rest of jython bugs

2011-07-20 Thread sympy
Comment #14 on issue 1233 by asmeurer: fix the rest of jython bugs http://code.google.com/p/sympy/issues/detail?id=1233 Do you know what specifically is implementation specific? Perhaps we should ask the Jython guys for help with this. -- You received this message because you are subscribed

Re: Issue 1233 in sympy: fix the rest of jython bugs

2011-07-20 Thread sympy
Comment #15 on issue 1233 by asmeurer: fix the rest of jython bugs http://code.google.com/p/sympy/issues/detail?id=1233 I asked on the jython-users mailing list (http://sourceforge.net/mailarchive/message.php?msg_id=27827873). We'll see if that helps any. -- You received this message

Re: Issue 2562 in sympy: Test failure in generate_derangements() with Python2.5

2011-07-20 Thread sympy
Comment #14 on issue 2562 by smi...@gmail.com: Test failure in generate_derangements() with Python2.5 http://code.google.com/p/sympy/issues/detail?id=2562 Perhaps we should leave this open, noting that the added functions largely duplicate existing functions (variations and cartes in

Re: Issue 2564 in sympy: Integer.__rmod__ assumes other is Integer

2011-07-20 Thread sympy
Comment #5 on issue 2564 by brad.froehle: Integer.__rmod__ assumes other is Integer http://code.google.com/p/sympy/issues/detail?id=2564 This was merged so the issue should be closed. -- You received this message because you are subscribed to the Google Groups sympy-patches group. To post

Re: Issue 2562 in sympy: Test failure in generate_derangements() with Python2.5

2011-07-20 Thread sympy
Comment #15 on issue 2562 by smi...@gmail.com: Test failure in generate_derangements() with Python2.5 http://code.google.com/p/sympy/issues/detail?id=2562 Compatibility versions of itertools function are now used in utilities.iterables. A compatibility 'combinations' function was also

Re: [sympy] public API for the linear algebra module

2011-07-20 Thread someone
Hi, For those who've not read my latest blog, I'm working on implementing a new structure for the matrices module of sympy. I faced many decision problems while doing so, like what should be named what and what should be where. Should matrix and linear algebra be separated ? So,

[sympy] subs() using dicts where some of the keys are also values

2011-07-20 Thread Martin Richter
Hi everyone. I'm concerned about how subs() handles dictionaries, in which the values of the dict contain some of the keys, such as (x**2+y**3).subs({x: a*x+b*y, y: b*x-a*y}) Would it be preferable that the result is (a*x+b*y)**2+(b*x-a*y)**3 ? Right now subs() re-substitues terms which

Re: [sympy] Scalar Matrices

2011-07-20 Thread Sherjil Ozair
Hi, On Wed, Jul 20, 2011 at 11:19 PM, Matt Curry mattjcu...@gmail.com wrote: Hello All, I've been writing some code that uses SymPy matrices, and part of this code has to check to see if a matrix is a scalar matrix (diagonal and all diagonal elements are equal). Unless I missed something,

Re: [sympy] public API for the linear algebra module

2011-07-20 Thread Aaron Meurer
On Wed, Jul 20, 2011 at 4:32 AM, someone someb...@bluewin.ch wrote: Hi, For those who've not read my latest blog, I'm working on implementing a new structure for the matrices module of sympy. I faced many decision problems while doing so, like what should be named what and what should be

Re: [sympy] subs() using dicts where some of the keys are also values

2011-07-20 Thread Aaron Meurer
First off, if you want an explicit order of substitution, you should not use a dictionary. Subs also allows the [(old, new), ...] syntax, which lets you define a specific order. But even in this case, it will perform the substitution iteratively. This is actually a useful feature. For example,

Re: [sympy] subs() using dicts where some of the keys are also values

2011-07-20 Thread Ondrej Certik
On Wed, Jul 20, 2011 at 11:59 AM, Aaron Meurer asmeu...@gmail.com wrote: First off, if you want an explicit order of substitution, you should not use a dictionary.  Subs also allows the [(old, new), ...] syntax, which lets you define a specific order. But even in this case, it will perform