[sympy] Contribute to Sympy

2015-12-06 Thread madhur modi
Hello everyone, I'm a 2nd year student of IIIT hyderabad. I want to start my contribution to sympy org. I have knowledge of python programming and higher mathematics so please guide me in contributing in order to achieve gsoc 2016. -- You received this message because you are subscribed to the

[sympy] Do I have something more to do after my Pull requests?

2015-12-06 Thread Thomas Baruchel
I did three Pull requests 10/14 days ago: https://github.com/sympy/sympy/pulls/baruchel Since that, I have no news; maybe it is normal, but I am asking in case I would have forgotten something? Do I need to do something more? Regards. -- You received this message because you are subscribed to t

[sympy] Is it possible to simplify x == 1 or x == 2 or x ==3 to x in [ 1, 2, 3 ] ?

2015-12-06 Thread Simon
Hello, I'm newcomer to sympy and just read some document from sympy website, sympy does a very good job on simplify Boolean expression. I would greatly appreciate it if someone could let me know whether I can customer sympy to support below cases simplify( x == 1 or x == 2 or x ==3 )

[sympy] Contribution to sympy

2015-12-06 Thread Aditya Vyas
Hello, I am in my second year of college in engineering. I am entirely new to open source world. I want to participate in GSOC 16 by contributing to this organisation. I know java and just basic python(the syntax and all). Can anyone please guide me to start contributing? -- You received this

[sympy] Re: Contribute to Sympy

2015-12-06 Thread AMiT Kumar
You may like to have a look at this introductory guide on how to setup your development environment and then find something to work on: https://github.com/sympy/sympy/wiki/Introduction-to-contributing. You can also have a look at some of the EasyToFix Issues here: https://github.com/sympy/symp

[sympy] Re: Contribution to sympy

2015-12-06 Thread AMiT Kumar
You may like to have a look at this introductory guide on how to setup your development environment and then find something to work on: https://github.com/sympy/sympy/wiki/Introduction-to-contributing. You can also have a look at some of the EasyToFix Issues here: https://github.com/sympy/symp

Re: [sympy] Do I have something more to do after my Pull requests?

2015-12-06 Thread Mateusz Paprocki
Hi, On 6 December 2015 at 16:46, Thomas Baruchel wrote: > I did three Pull requests 10/14 days ago: > https://github.com/sympy/sympy/pulls/baruchel > Since that, I have no news; maybe it is normal, but I am asking in case I > would have forgotten something? > Do I need to do something more? Regar

[sympy] How to generate C code from the sympy expression "e1 op e2" to a C function of "if (e1<=e2) then return 0 else return 1"

2015-12-06 Thread zell
Suppose I have a *sympy* expression e1 op e2 where op is any arithmetic comparison operator, such as <, >, <=, I want to generate a *C* code double f(x1,x2,...xn){ if (e1<=e2) return 0 else return 1; } where x1,...,x2 are free variables in either e1 or e2. How can I use *sympy.printing.c