Re: [sympy] Re: Help with our GSoC application

2012-03-06 Thread Joachim Durchholz
Am 06.03.2012 06:02, schrieb Aaron Meurer: It would also help if someone could update the formatting of these wiki pages: https://github.com/sympy/sympy/wiki/old-wiki-GSo-C2007 https://github.com/sympy/sympy/wiki/old-wiki-GSoC2008 https://github.com/sympy/sympy/wiki/old-wiki-GSoC2009 https://git

[sympy] Re: integration of self-defined function

2012-03-06 Thread Hansi
First of all, thank you very much for the quick response! The result of integrating the Heaviside-function is different with my sympy (though it is version 0.7.1): >>> var('a'), var('x') (a, x) >>> integrate(Heaviside(x - a), x) Integral(Heaviside(-a + x), x) How can I switch to Miejer G integrati

Re: [sympy] Re: integration of self-defined function

2012-03-06 Thread Sergiu Ivanov
Hello, On Tue, Mar 6, 2012 at 12:35 PM, Hansi wrote: > First of all, thank you very much for the quick response! > The result of integrating the Heaviside-function is different with my > sympy (though it is version 0.7.1): var('a'), var('x') > (a, x) integrate(Heaviside(x - a), x) > Int

[sympy] Re: integration of self-defined function

2012-03-06 Thread Hansi
Hi, thank you! It's working now ;-) On 6 Mrz., 12:03, Sergiu Ivanov wrote: > Hello, > > On Tue, Mar 6, 2012 at 12:35 PM, Hansi > > wrote: > > First of all, thank you very much for the quick response! > > The result of integrating the Heaviside-function is different with my > > sympy (though i

[sympy] Solution to issue 2328

2012-03-06 Thread Vincent Kuri
My name is Vincent Anup Kuri. I'm a 2nd year computer science student from PESIT college in India. I've been very interested in GSoC, but due to certain circumstances i could not participate last time. Want to do it this time :) I was going through the github page and i looking at the project i

Re: [sympy] Re: Help with our GSoC application

2012-03-06 Thread prateek papriwal
GSOC 2007 updated .. please see https://github.com/sympy/sympy/wiki/GSOC-2007 On Tue, Mar 6, 2012 at 2:11 PM, Joachim Durchholz wrote: > Am 06.03.2012 06:02, schrieb Aaron Meurer: > > It would also help if someone could update the formatting of these wiki >> pages: >> >> https://github.com/symp

Re: [sympy] Re: Help with our GSoC application

2012-03-06 Thread Sean Vig
Last night, I updated them and Aaron moved them so as to drop the 'old wiki' designation. They're currently all at https://github.com/sympy/sympy/wiki/GSoC-2007-Report and similarly for 08, 09 and 10. The links to them are on the front page of the wiki with the other GSoC material. Sean On Tue, M

Re: [sympy] Re: Help with our GSoC application

2012-03-06 Thread prateek papriwal
ok fine On Tue, Mar 6, 2012 at 7:52 PM, Sean Vig wrote: > Last night, I updated them and Aaron moved them so as to drop the 'old > wiki' designation. They're currently all at > https://github.com/sympy/sympy/wiki/GSoC-2007-Report and similarly for > 08, 09 and 10. The links to them are on t

Re: [sympy] Cylindrical Algebraic Decomposition

2012-03-06 Thread prateek papriwal
@aaron i have started reading http://perso.univ-rennes1.fr/marie-francoise.roy/bpr-ed2-posted1.html . it would be helpful to me if you can tell me the structured way of going through the topic . On Tue, Mar 6, 2012 at 2:12 AM, Aaron Meurer wrote: > Great. I recommend that you start digging into

[sympy] sum() function

2012-03-06 Thread prateek papriwal
suppose if i want to know sum() function is located in which python file ? how to know this -- 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 sym

Re: [sympy] sum() function

2012-03-06 Thread Sergiu Ivanov
On Tue, Mar 6, 2012 at 6:28 PM, prateek papriwal wrote: > suppose if i want to know  sum() function is located in which python file ? > how to know this Use git-grep: http://linux.die.net/man/1/git-grep For example, to find the definition of the function sum you may want to use the following com

Re: [sympy] sum() function

2012-03-06 Thread Sean Vig
If you are using ipython, you can use the introspection feature, for example 'sum?', which displays a bunch of information about the function or class, including the docstring. Extra details can be found using 'sum??'. As a side note, sum() is a built-in python function, and we do not override it.

Re: [sympy] Re: Help with our GSoC application

2012-03-06 Thread Aaron Meurer
Not all pages were updated, from my understanding. There are a few old reports in the "old-wiki" format. These are the ones whose names still start with "old-wiki". Aaron Meurer On Tue, Mar 6, 2012 at 7:29 AM, prateek papriwal wrote: > ok fine > > On Tue, Mar 6, 2012 at 7:52 PM, Sean Vig

Re: [sympy] Re: Help with our GSoC application

2012-03-06 Thread Aaron Meurer
Oh, I guess I should have done a git pull before writing this. I guess everything was updated. So, for now, please just help with the application itself. Aaron Meurer On Tue, Mar 6, 2012 at 10:21 AM, Aaron Meurer wrote: > Not all pages were updated, from my understanding.  There are a few > ol

Re: [sympy] Re: Help with our GSoC application

2012-03-06 Thread Aaron Meurer
Thanks a ton for fixing these by the way. I wouldn't have gotten around to it. This will look much better to the people at Google who are reading through our application, and is something that needed to be done anyway (and still needs to be done for the rest of the "old wiki" pages btw). Aaron M

Re: [sympy] sum() function

2012-03-06 Thread Aaron Meurer
Exactly. So sum() is not in any Python file, because it's written in C and part of the standard Python built-ins. If you wanted to see the C source, you could download the Python source code and look for it there. But it probably wouldn't be very enlightening, unless you are interested in writin

Re: [sympy] Cylindrical Algebraic Decomposition

2012-03-06 Thread Aaron Meurer
I guess just read it in order. I don't know of a better way. That book actually covers more than I presently know about algebraic geometry. I suppose if your goal is to understand the algorithms one thing you could try doing is looking up the algorithms in the polys (for those that are implement

Re: [sympy] Cylindrical Algebraic Decomposition

2012-03-06 Thread someone
Hi, > i have started reading > http://perso.univ-rennes1.fr/marie-francoise.roy/bpr-ed2-posted1.html . > it would be helpful to me if you can tell me the structured way of > going through the topic . This resource was posted there to serve as background literature. I'm not sure if it's a good sta

Re: [sympy] Re: Help with our GSoC application

2012-03-06 Thread Joachim Durchholz
Am 06.03.2012 15:18, schrieb prateek papriwal: GSOC 2007 updated .. please see https://github.com/sympy/sympy/wiki/GSOC-2007 I'm getting a Create New Page for that URL. -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send emai

Re: [sympy] Re: Help with our GSoC application

2012-03-06 Thread prateek papriwal
it has been deleted .. check the history https://github.com/sympy/sympy/wiki/_history On Wed, Mar 7, 2012 at 2:22 AM, Joachim Durchholz wrote: > Am 06.03.2012 15:18, schrieb prateek papriwal: > > GSOC 2007 updated .. please see >> https://github.com/sympy/**sympy/wiki/GSOC-2007

Re: [sympy] Re: Help with our GSoC application

2012-03-06 Thread Sean Vig
On Tue, Mar 6, 2012 at 15:05, prateek papriwal wrote: > it has been deleted .. check the history > https://github.com/sympy/sympy/wiki/_history Exactly this. The GSoC pages from the old wiki are up at: https://github.com/sympy/sympy/wiki/GSoC-2007-Report https://github.com/sympy/sympy/wiki/GSoC

[sympy] GSoC 2012

2012-03-06 Thread Jorge Cardona
Hi everyone, My name is Jorge E. Cardona, currently I'm in my first year of a PhD in Math in the university of Miami, I will like to be part on GSoC this year with sympy. My main interest are in dynamical systems, diff equations and symbolic integration, previously I was involved in in GSoC2009

Re: [sympy] GSoC 2012

2012-03-06 Thread Chris Smith
On Wed, Mar 7, 2012 at 9:36 AM, Jorge Cardona wrote: > Hi everyone, > > My name is Jorge E. Cardona, currently I'm in my first year of a PhD in > Math in the university of Miami, I will like to be part on GSoC this year > with sympy. My main interest are in dynamical systems, diff equations and >

Re: [sympy] Cylindrical Algebraic Decomposition

2012-03-06 Thread prateek papriwal
hey aaron , by "fulfiling your patch requirement" you mean making myself comfortable with sending pull requests ? is it like that On Tue, Mar 6, 2012 at 2:12 AM, Aaron Meurer wrote: > Great. I recommend that you start digging into the sympy code base > and looking at fulfilling your patch requi

Re: [sympy] Cylindrical Algebraic Decomposition

2012-03-06 Thread Chris Smith
On Wed, Mar 7, 2012 at 11:46 AM, prateek papriwal wrote: > hey aaron , > by "fulfiling your patch requirement" you mean making myself comfortable > with sending pull requests ? is it like that > > I believe you actually find something from the issues list ( http://code.google.com/p/sympy/issues),

Re: [sympy] Cylindrical Algebraic Decomposition

2012-03-06 Thread prateek papriwal
ok On Wed, Mar 7, 2012 at 11:53 AM, Chris Smith wrote: > > > On Wed, Mar 7, 2012 at 11:46 AM, prateek papriwal < > papriwalprat...@gmail.com> wrote: > >> hey aaron , >> by "fulfiling your patch requirement" you mean making myself comfortable >> with sending pull requests ? is it like that >> >>

Re: [sympy] Cylindrical Algebraic Decomposition

2012-03-06 Thread Chris Smith
There's a cherry at issue 3131. -- 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

Re: [sympy] GSoC 2012

2012-03-06 Thread Jorge Cardona
Ok, that was an easy one: https://github.com/sympy/sympy/pull/1107 I will try to work on more patches. By the way, I was like searching for some CI server for sympy I thought you had one, that could be a good thing for sympy, we can see how code is broken and fixed in a CI like jenkins or buildbot