Re: Issue 821 in sympy: multiple arguments for max and other improvements

2011-03-31 Thread sympy
Comment #45 on issue 821 by pr...@goodok.ru: multiple arguments for max and other improvements http://code.google.com/p/sympy/issues/detail?id=821 The first approach towards the LatticeOp have done. But now it is draft in hierarchy style. Never the less, all old accumulated tests are

Re: Issue 2246 in sympy: Global directive to switch strict transformations

2011-03-31 Thread sympy
Comment #9 on issue 2246 by smi...@gmail.com: Global directive to switch strict transformations http://code.google.com/p/sympy/issues/detail?id=2246 You might try any equation you have a question about on my (smichr) 1694 github branch where the new solve is located. -- You received this

Issue 2254 in sympy: Support for bitwise operations

2011-03-31 Thread sympy
Status: New Owner: Labels: Type-Defect Priority-Medium New issue 2254 by b-goo...@largestprime.net: Support for bitwise operations http://code.google.com/p/sympy/issues/detail?id=2254 sympy currently treats And and Or as logical operations (but a bit oddly, in that x | 3 is parsed as

Re: Issue 2254 in sympy: Support for bitwise operations

2011-03-31 Thread sympy
Updates: Cc: christian.muise Comment #1 on issue 2254 by christian.muise: Support for bitwise operations http://code.google.com/p/sympy/issues/detail?id=2254 I think the problem here isn't that x | 1 == True, but that Or(x | 3) is even allowed. In sympy, the Or, And, etc. operators

Re: Issue 2125 in sympy: Using Integers as python slices.

2011-03-31 Thread sympy
Updates: Status: Fixed Comment #23 on issue 2125 by nicolas@gmail.com: Using Integers as python slices. http://code.google.com/p/sympy/issues/detail?id=2125 (No comment was entered for this change.) -- You received this message because you are subscribed to the Google Groups

Re: Issue 2125 in sympy: Using Integers as python slices.

2011-03-31 Thread sympy
Updates: Labels: -NeedsReview Comment #24 on issue 2125 by nicolas@gmail.com: Using Integers as python slices. http://code.google.com/p/sympy/issues/detail?id=2125 (No comment was entered for this change.) -- You received this message because you are subscribed to the Google

Re: Issue 2011 in sympy: less self-confident simplify

2011-03-31 Thread sympy
Comment #21 on issue 2011 by nicolas@gmail.com: less self-confident simplify http://code.google.com/p/sympy/issues/detail?id=2011 This does not pass anymore: ___

Re: Issue 2011 in sympy: less self-confident simplify

2011-03-31 Thread sympy
Updates: Labels: -PassedReview NeedsReview Comment #22 on issue 2011 by nicolas@gmail.com: less self-confident simplify http://code.google.com/p/sympy/issues/detail?id=2011 (No comment was entered for this change.) -- You received this message because you are subscribed to the

Re: Issue 2011 in sympy: less self-confident simplify

2011-03-31 Thread sympy
Comment #24 on issue 2011 by nicolas@gmail.com: less self-confident simplify http://code.google.com/p/sympy/issues/detail?id=2011 This is the code in Matrix.is_symmetric(): def symmetric(self): if not self.is_square: return False m = self.clone()

Re: Issue 2254 in sympy: Support for bitwise operations

2011-03-31 Thread sympy
Comment #3 on issue 2254 by b-goo...@largestprime.net: Support for bitwise operations http://code.google.com/p/sympy/issues/detail?id=2254 While I agree with Comment #1 Christian, this specific issue is a request for bitwise operations in sympy, however they might be implemented

Re: Issue 649 in sympy: Trigonometric functions should remove multiples of pi/2

2011-03-31 Thread sympy
Comment #3 on issue 649 by ness...@googlemail.com: Trigonometric functions should remove multiples of pi/2 http://code.google.com/p/sympy/issues/detail?id=649 pull request: https://github.com/sympy/sympy/pull/183 -- You received this message because you are subscribed to the Google Groups

Re: Issue 2255 in sympy: Integer % Rational not implemented

2011-03-31 Thread sympy
Updates: Labels: NeedsReview ness987 Comment #2 on issue 2255 by asmeurer: Integer % Rational not implemented http://code.google.com/p/sympy/issues/detail?id=2255 (No comment was entered for this change.) -- You received this message because you are subscribed to the Google Groups

Re: Issue 821 in sympy: multiple arguments for max and other improvements

2011-03-31 Thread sympy
Comment #46 on issue 821 by Vinzent.Steinberg: multiple arguments for max and other improvements http://code.google.com/p/sympy/issues/detail?id=821 This is good work, thanks! Most functionality I can think of is in now and the tests pass. A few comments: Commit a36602512fbd has the

Re: Issue 2125 in sympy: Using Integers as python slices.

2011-03-31 Thread sympy
Updates: Status: Fixed Comment #23 on issue 2125 by nicolas@gmail.com: Using Integers as python slices. http://code.google.com/p/sympy/issues/detail?id=2125 (No comment was entered for this change.) -- You received this message because you are subscribed to the Google Groups

Re: Issue 821 in sympy: multiple arguments for max and other improvements

2011-03-31 Thread sympy
Comment #47 on issue 821 by asmeurer: multiple arguments for max and other improvements http://code.google.com/p/sympy/issues/detail?id=821 Sorry, I mean to have if x.is_real is not False (not None). -- You received this message because you are subscribed to the Google Groups sympy-patches

Re: Issue 2011 in sympy: less self-confident simplify

2011-03-31 Thread sympy
Comment #21 on issue 2011 by nicolas@gmail.com: less self-confident simplify http://code.google.com/p/sympy/issues/detail?id=2011 This does not pass anymore: ___

Re: Issue 2011 in sympy: less self-confident simplify

2011-03-31 Thread sympy
Comment #23 on issue 2011 by Vinzent.Steinberg: less self-confident simplify http://code.google.com/p/sympy/issues/detail?id=2011 Hmm, I pushed in some matrix related fixes today, it might be this. -- You received this message because you are subscribed to the Google Groups sympy-patches

Re: Issue 2011 in sympy: less self-confident simplify

2011-03-31 Thread sympy
Updates: Labels: -PassedReview NeedsReview Comment #22 on issue 2011 by nicolas@gmail.com: less self-confident simplify http://code.google.com/p/sympy/issues/detail?id=2011 (No comment was entered for this change.) -- You received this message because you are subscribed to the

Re: Issue 2011 in sympy: less self-confident simplify

2011-03-31 Thread sympy
Comment #24 on issue 2011 by nicolas@gmail.com: less self-confident simplify http://code.google.com/p/sympy/issues/detail?id=2011 This is the code in Matrix.is_symmetric(): def symmetric(self): if not self.is_square: return False m = self.clone()

Re: Issue 2011 in sympy: less self-confident simplify

2011-03-31 Thread sympy
Comment #25 on issue 2011 by asmeurer: less self-confident simplify http://code.google.com/p/sympy/issues/detail?id=2011 You can also use git bisect to tell what commit caused a problem. -- You received this message because you are subscribed to the Google Groups sympy-patches group. To post

Re: Issue 2255 in sympy: Integer % Rational not implemented

2011-03-31 Thread sympy
Updates: Labels: NeedsReview ness987 Comment #2 on issue 2255 by asmeurer: Integer % Rational not implemented http://code.google.com/p/sympy/issues/detail?id=2255 (No comment was entered for this change.) -- You received this message because you are subscribed to the Google Groups

[sympy] Re: On a general representation for singularities and infinities

2011-03-31 Thread Tom Bachmann
On 30 Mrz., 21:56, Tom Bachmann ness...@googlemail.com wrote: * limit(f, F) * f(F) Of course these two are actually the same. Thinking again, it is not quite that simple. In general f(F) is *very* complicated. Usually limit(f, F) should return z such that CB(z) \subsetof f(F); this is the

Re: [sympy] GSoC Application 2011

2011-03-31 Thread siddharth batra
Hey Andy, Thanks for informing me about the selection procedure, I will now definitely try to work upon the matrices and put my best into it. On Thursday, March 31, 2011, Andy Ray Terrel andy.ter...@gmail.com wrote: On Wed, Mar 30, 2011 at 9:17 PM, siddharth batra siddharth.171...@gmail.com

[sympy] Sparse Matrix Project

2011-03-31 Thread SherjilOzair
Hello Andy, I'm working to submit a proposal on Sparse Matrices for this GSoC. I wanted some help regarding the project. Would be very grateful if you could help me. According to my calculations, I'd take roughly 8 weeks to implement a full SMatrix class and rewriting Matrix class to add GMPY

[sympy] physics.quantum - labels vs args - printing vs content

2011-03-31 Thread krastanov.ste...@gmail.com
Hi, In short: *label is used by the printing functions but also it is used instead of args in some other functions* I'm trying to make the printing in physics.quantum.spin less ambiguous. According to the answer I received here http://groups.google.com/group/sympy/msg/3f8d4fe139b1884a it will be

Re: [sympy] Sparse Matrix Project

2011-03-31 Thread Sherjil Ozair
-- You received this message because you are subscribed to the Google Groups sympy group. To post to this group, send email to sympy@googlegroups.com. To unsubscribe from this group, send email to sympy+unsubscr...@googlegroups.com. For more options, visit this group at

[sympy] Pattern matching for sympy tree transformation

2011-03-31 Thread Mark Dewing
The current method for transforming sympy trees (used in the printers, for example) can require some nested if-tests, even for some simple cases like subtraction (addition of -1 multiplied by the first arg), or division (mutiply by arg to the power of -1). It would be nice to be able to

Re: [sympy] Pattern matching for sympy tree transformation

2011-03-31 Thread Christophe BAL
Hello. That's look very good. This would also allow to build customized math tree from sympy tree. C. -- You received this message because you are subscribed to the Google Groups sympy group. To post to this group, send email to sympy@googlegroups.com. To unsubscribe from this group, send

Re: [sympy] physics.quantum - labels vs args - printing vs content

2011-03-31 Thread Brian Granger
Hi, In short: label is used by the printing functions but also it is used instead of args in some other functions Yes, that is the case. The difference between label and args is deliberate and important: * label == set of things that determine which state you have == quantum numbers usually.

Re: [sympy] GSoC Application 2011: Physics Project(s)

2011-03-31 Thread Brian Granger
Chris, Welcome. I’m a fourth year physics PhD student at UC Davis and I’m quite interested in a few of your physics based GSoC projects. In particular, I like the “Spin states and operators for arbitrary spin” and “Position and momentum basis functions” projects.  However, everything looks

Re: [sympy] GSoC 2011 - Luis Garcia

2011-03-31 Thread Brian Granger
Hi, Wecome! My name is Luis F. Garcia, I'm a Physics junior undergrad in Tec de Monterrey, a university in México. I've been browsing the accepted mentor programs for this year's GSoC and SymPy really caught my attention. First a bit of my background. My completed coursework so far has

Re: [sympy] physics.quantum - labels vs args - printing vs content

2011-03-31 Thread krastanov.ste...@gmail.com
Hi, I checked out TimeDepState and I believe that I got it now and I will use it for the spins over the weekend. Stefan On 31 March 2011 18:15, Brian Granger elliso...@gmail.com wrote: Hi, In short: label is used by the printing functions but also it is used instead of args in some other

Re: [sympy] physics.quantum - labels vs args - printing vs content

2011-03-31 Thread krastanov.ste...@gmail.com
I mean the style of the code, not the class, obviously :) On 31 March 2011 21:47, krastanov.ste...@gmail.com krastanov.ste...@gmail.com wrote: Hi, I checked out TimeDepState and I believe that I got it now and I will use it for the spins over the weekend. Stefan On 31 March 2011 18:15,