Re: Issue 707 in sympy: move some wikis to github.com/sympy/sympy/wiki

2012-01-06 Thread sympy
Updates: Status: Fixed Comment #13 on issue 707 by asmeu...@gmail.com: move some wikis to github.com/sympy/sympy/wiki http://code.google.com/p/sympy/issues/detail?id=707 This was done. -- You received this message because you are subscribed to the Google Groups sympy-issues group.

Re: Issue 2115 in sympy: Move stuff from the Google Code SVN to git

2012-01-06 Thread sympy
Comment #7 on issue 2115 by asmeu...@gmail.com: Move stuff from the Google Code SVN to git http://code.google.com/p/sympy/issues/detail?id=2115 The wiki content was all moved. We should export all of the SVN to git and upload it on github, so that it's easier to access the really old

Issue 2966 in sympy: Option to sympify() to convert == to Eq() (or lhs - rhs)

2012-01-06 Thread sympy
Status: Accepted Owner: Labels: Type-Enhancement Priority-Medium Parsing New issue 2966 by asmeu...@gmail.com: Option to sympify() to convert == to Eq() (or lhs - rhs) http://code.google.com/p/sympy/issues/detail?id=2966 There should be an option to sympify() to convert == to Eq().

Issue 2967 in sympy: Symbol() allows to define any assumption

2012-01-06 Thread sympy
Status: Accepted Owner: Labels: Type-Defect Priority-Medium New issue 2967 by asmeu...@gmail.com: Symbol() allows to define any assumption http://code.google.com/p/sympy/issues/detail?id=2967 Is this intentional? You can do Symbol('x', whatever=True), where whatever is, well,

Re: Issue 2204 in sympy: Document why unpickling a singleton doesn't return the singleton object with protocol 0 and 1

2012-01-06 Thread sympy
Comment #16 on issue 2204 by asmeu...@gmail.com: Document why unpickling a singleton doesn't return the singleton object with protocol 0 and 1 http://code.google.com/p/sympy/issues/detail?id=2204 This was also https://github.com/sympy/sympy/pull/925. -- You received this message because you

Re: Issue 2770 in sympy: Update stuff that SymPy can do on the homepage

2012-01-06 Thread sympy
Comment #9 on issue 2770 by asmeu...@gmail.com: Update stuff that SymPy can do on the homepage http://code.google.com/p/sympy/issues/detail?id=2770 This was https://github.com/sympy/sympy.github.com/pull/39. Other places that have the list need to be updated too, before this issue is

Re: Issue 2948 in sympy: solve cannot handle polynomials of functions

2012-01-06 Thread sympy
Updates: Status: Accepted Labels: Polynomial Solvers Comment #1 on issue 2948 by asmeu...@gmail.com: solve cannot handle polynomials of functions http://code.google.com/p/sympy/issues/detail?id=2948 Should be straight forward to implement, since Poly already automatically

Re: Issue 2956 in sympy: Simetimes the test_hyperexpand.py (test_meijerg_shift_operators) fails in master.

2012-01-06 Thread sympy
Updates: Blockedon: 2712 Comment #5 on issue 2956 by ness...@gmail.com: Simetimes the test_hyperexpand.py (test_meijerg_shift_operators) fails in master. http://code.google.com/p/sympy/issues/detail?id=2956 This function has an obvious problem in the sense that the bug is caused by

Re: Issue 2712 in sympy: Merge gsoc-2 and gsoc-3

2012-01-06 Thread sympy
Issue 2712: Merge gsoc-2 and gsoc-3 http://code.google.com/p/sympy/issues/detail?id=2712 This issue is now blocking issue 2956. See http://code.google.com/p/sympy/issues/detail?id=2956 -- You received this message because you are listed in the owner or CC fields of this issue, or because you

Issue 2968 in sympy: partial fraction decomposition should be able to return structured result

2012-01-06 Thread sympy
Status: New Owner: Labels: Type-Defect Priority-Medium Polynomial New issue 2968 by ness...@gmail.com: partial fraction decomposition should be able to return structured result http://code.google.com/p/sympy/issues/detail?id=2968 Some algorithms internally use partial fraction

Re: Issue 2959 in sympy: Implement fresnel integrals

2012-01-06 Thread sympy
Comment #3 on issue 2959 by ness...@gmail.com: Implement fresnel integrals http://code.google.com/p/sympy/issues/detail?id=2959 Cool! Please see the (not yet merged) gsoc-3 branch [0] for examples on how to proceed (I believe you can follow the elliptic integrals quite closely). [Note that

Re: Issue 2966 in sympy: Option to sympify() to convert == to Eq() (or lhs - rhs)

2012-01-06 Thread sympy
Comment #1 on issue 2966 by hunt...@gmail.com: Option to sympify() to convert == to Eq() (or lhs - rhs) http://code.google.com/p/sympy/issues/detail?id=2966 I had assumed there was a very intentional reason for the difference between '==' and 'Eq()' in the Sympy community. However, I

Re: Issue 2959 in sympy: Implement fresnel integrals

2012-01-06 Thread sympy
Updates: Cc: ness...@gmail.com Comment #4 on issue 2959 by someb...@bluewin.ch: Implement fresnel integrals http://code.google.com/p/sympy/issues/detail?id=2959 I made a first implementation today, see the pull request: https://github.com/sympy/sympy/pull/938 Most of the things work

Issue 2969 in sympy: sqrt(sin(x)).series(x, 0, 7) is wrong

2012-01-06 Thread sympy
Status: New Owner: Labels: Type-Defect Priority-Medium New issue 2969 by mario.pe...@gmail.com: sqrt(sin(x)).series(x, 0, 7) is wrong http://code.google.com/p/sympy/issues/detail?id=2969 The last order in the following series expansions are wrong using the last version of the master

Re: Issue 2969 in sympy: sqrt(sin(x)).series(x, 0, 7) is wrong

2012-01-06 Thread sympy
Updates: Labels: Series Comment #1 on issue 2969 by asmeu...@gmail.com: sqrt(sin(x)).series(x, 0, 7) is wrong http://code.google.com/p/sympy/issues/detail?id=2969 I guess I misunderstand orders. Is it not good enough that 7 is greater than 13/2 and less than 17/2? -- You received

Re: Issue 2587 in sympy: Strange printing at SymPy Live

2012-01-06 Thread sympy
Comment #14 on issue 2587 by anxuiz...@gmail.com: Strange printing at SymPy Live http://code.google.com/p/sympy/issues/detail?id=2587 This is a simpler case that can reproduce the problem: In [1]: from pickle import dumps,loads In [2]: f=Add(Pow(x,2),Pow(x,-2)) # x**2+x**-2 In [3]:

Re: Issue 2885 in sympy: Logging for the IRC channel

2012-01-06 Thread sympy
Comment #2 on issue 2885 by asmeu...@gmail.com: Logging for the IRC channel http://code.google.com/p/sympy/issues/detail?id=2885 This was done. The logs are now at http://colabti.org/irclogger/irclogger_logs/sympy. -- You received this message because you are subscribed to the Google

Re: Issue 2885 in sympy: Logging for the IRC channel

2012-01-06 Thread sympy
Updates: Status: Fixed Comment #3 on issue 2885 by asmeu...@gmail.com: Logging for the IRC channel http://code.google.com/p/sympy/issues/detail?id=2885 (No comment was entered for this change.) -- You received this message because you are subscribed to the Google Groups sympy-issues

Issue 2970 in sympy: coverage_doctest.py should report public classes (not just functions)

2012-01-06 Thread sympy
Status: Accepted Owner: Labels: Type-Defect Priority-Medium Documentation Testing New issue 2970 by asmeu...@gmail.com: coverage_doctest.py should report public classes (not just functions) http://code.google.com/p/sympy/issues/detail?id=2970 The doctest coverage tool does not list

[sympy] user friendly simple equation solver

2012-01-06 Thread Bjorn
Hi, I am new to sympy and I have a basic question. I would like to use sympy to sovle simple sets of equations in a text editor. like given the following as plain text: a = 10 b = 20 a * 12 + 50*c == 456 + b and an instruction to solve for c, then ptorduce: c = 7.12 I know sympy comes with a

[sympy] variable with binary values?

2012-01-06 Thread Kevin Hunter
Hullo Sympy Group, In my code, I'd like to be able to specify symbols with a binary type, something akin to: * b = symbols('b', binary=True)* This would let *b* assume only values from the set *{0, 1}*. I see the * Boolean* class from which the *Symbol* class derives, but I believe that's

Re: [sympy] user friendly simple equation solver

2012-01-06 Thread Christophe BAL
Hello, try the following. Best regards. Christophe. === #!/usr/bin/env python2 from sympy import * # Une equation toute simple var('a b c') a = 10 b = 20 print solve(a * 12 + 50*c - (456 + b), c) -- You received this message because you are subscribed

Re: [sympy] user friendly simple equation solver

2012-01-06 Thread Aaron Meurer
It's not clear what exactly you want to do. Here are some suggestions, though, that may or may not be what you want. - To parse an expression given in string form into a SymPy object, us the sympify() function: In [12]: sympify(a*12 + 50*c) Out[12]: 12⋅a + 50⋅c Note that I did not have a or c

Re: [sympy] variable with binary values?

2012-01-06 Thread Aaron Meurer
So you want to assume that b is a number modulo 2. To do this, you can use the new Mod() object that was recently added. Note that this was added after the latest release, so you'll have to use the git version if you want to use it. You define b = Symbol('b', integer=True), and use Mod(b, 2)

Re: [sympy] documentation: htmli18n actually rebuilds the docs each time for each language

2012-01-06 Thread Aaron Meurer
So should make htmli18n be run before uploading the docs to docs.sympy.org? Aaron Meurer 2011/12/29 Ondřej Čertík ondrej.cer...@gmail.com: On Wed, Dec 28, 2011 at 3:24 PM, krastanov.ste...@gmail.com krastanov.ste...@gmail.com wrote: For some reason instead of reusing the already build but not

Re: [sympy] user friendly simple equation solver

2012-01-06 Thread Chris Smith
On Fri, Jan 6, 2012 at 4:52 PM, Bjorn bjornj...@gmail.com wrote: Hi, I am new to sympy and I have a basic question. I would like to use sympy to sovle simple sets of equations in a text editor. like given the following as plain text: a = 10 b = 20 a * 12 + 50*c == 456 + b and an

[sympy]

2012-01-06 Thread harishma dayanidhi
Hi, i was trying to run the existing set of tests on my branch of the code but when i use ./bin/test it gives me this error - /bin/env: python: No such file or directory . I am working on windows platform... how can i run the tests on windows?? -- You received this message because you are

Re: [sympy]

2012-01-06 Thread Chris Smith
I run the tests as follows in windows: With a command prompt window, sitting in the sympy directory that contains the bin directory I issue `\Python27\python.exe bin\test` to run the tests and `\Python27\python.exe bin\doctest` to run the doctests. -- You received this message because you are

Re: [sympy]

2012-01-06 Thread harishma dayanidhi
worked like a charm :-) but so that i can figure these things out myself in the future, could you tell me why this works this way?? what was i doing wrong before?? On Fri, Jan 6, 2012 at 9:54 PM, Chris Smith smi...@gmail.com wrote: I run the tests as follows in windows: With a command

Re: [sympy]

2012-01-06 Thread Chris Smith
On Fri, Jan 6, 2012 at 10:19 PM, harishma dayanidhi dayanidhi.haris...@gmail.com wrote: worked like a charm :-) but so that i can figure these things out myself in the future, could you tell me why this works this way?? what was i doing wrong before?? On Fri, Jan 6, 2012 at 9:54 PM,

Re: [sympy]

2012-01-06 Thread harishma dayanidhi
i was just running the commands through Git Bash while i was in the sympy directory... all the previous instructions were working just fine through it but when i ran - ./bin/test it gave the above mentioned error...- /bin/env: python: No such file or directory . The first line of the test

Re: [sympy]

2012-01-06 Thread Chris Smith
On Fri, Jan 6, 2012 at 11:08 PM, harishma dayanidhi dayanidhi.haris...@gmail.com wrote: i was just running the commands through Git Bash while i was in the sympy directory... all the previous instructions were working just fine through it but when i ran - ./bin/test it gave the above

Re: [sympy]

2012-01-06 Thread harishma dayanidhi
alright, thanks for the help . :-) On Fri, Jan 6, 2012 at 11:08 PM, Chris Smith smi...@gmail.com wrote: On Fri, Jan 6, 2012 at 11:08 PM, harishma dayanidhi dayanidhi.haris...@gmail.com wrote: i was just running the commands through Git Bash while i was in the sympy directory... all

Re: [sympy] variable with binary values?

2012-01-06 Thread Kevin Hunter
For this project, my end goal is to interface a series of Sympy equations that I've built to an optimization solver. In the context of optimization, binary variables usually represent a decision, and in the context of solving, they represent a branch point. Branch points make it expensive to

Re: [sympy] bin/test output

2012-01-06 Thread Chris Smith
On Sat, Jan 7, 2012 at 12:31 AM, miham tlora...@gmail.com wrote: What do different letters in the bin/test output mean? For example f means that a test is expected to fail, . means that a test passed. What about s, w, F, X,...? And what do different colors mean? This could be added to

[sympy] How to name variables with commas?

2012-01-06 Thread Kevin Hunter
Hullo Sympy Group, I'm wrapping some Sympy variables into a group via a class object. The object is attached to another object, and from here, I'm able to collect the name of the group (via *__setattr__*). Thus, I can have constructs like this: - *M.X = Var()# Var is the wrapper

Re: [sympy] bin/test output

2012-01-06 Thread Aaron Meurer
The colors are only for visual purposes. They correspond to the the letters and have no additional meaning. Other letters that are used are: T - timeout (e.g., when --timeout is used) K - KeyboardInterrupt (when running the slow tests with --slow, you can interrupt one of them without killing

Re: [sympy] How to name variables with commas?

2012-01-06 Thread Aaron Meurer
On Fri, Jan 6, 2012 at 12:09 PM, Kevin Hunter hunt...@gmail.com wrote: Hullo Sympy Group, I'm wrapping some Sympy variables into a group via a class object.  The object is attached to another object, and from here, I'm able to collect the name of the group (via __setattr__).  Thus, I can have

[sympy] Printing in secondquant is broken

2012-01-06 Thread Matt Habel
For many of the classes in secondquant dealing with state they will not print. Most of them are because of not having a variable lbracket or rbracket. The __str__ method in the common superclass FockState uses these variables to represent it. I have no clue what this means, but I am working on

Re: [sympy] How to name variables with commas?

2012-01-06 Thread Kevin Hunter
Err, is this perhaps a bug that has been fixed since the 0.7.1 release? When I do that, vname can't have commas, else it creates multiple variables: - *# For a mnemonic, here is an example variable from a model with which I'm* *# working. The variable format is VarName[year, tech,