Thank you a lot. It worked On Wed, Feb 3, 2010 at 10:11 PM, Aaron S. Meurer <[email protected]> wrote:
> If you already have a git repository for sympy, just do > > git remote add mattpap git://github.com/mattpap/sympy-polys.git > > Then do > > git fetch mattpap > git checkout mattpap/polys5 > git checkout -b polys5 > > Then you can just to git pull on that branch to update it, and repeat the > above 3 for new branches. > > Hope that helps. > > Aaron Meurer > > On Feb 3, 2010, at 2:08 PM, Kasun Samarasinghe wrote: > > But it does not checks out the new files in > http://github.com/mattpap/sympy-polys/tree/polys5/sympy/polys/. > > Kasun > > On Wed, Feb 3, 2010 at 10:05 PM, Aaron S. Meurer <[email protected]>wrote: > >> I believe it is git://github.com/mattpap/sympy-polys.git >> >> Aaron Meurer >> On Feb 3, 2010, at 1:55 PM, Kasun Samarasinghe wrote: >> >> HI, >> >> I was trying to checkout the poly5 branch using git. what is the url >> should use? >> i mean in git clone "?". >> >> Kasun >> >> On Wed, Feb 3, 2010 at 3:56 PM, Mateusz Paprocki <[email protected]>wrote: >> >>> Hi, >>> >>> On Wed, Feb 03, 2010 at 02:06:10AM +0100, Kasun Samarasinghe wrote: >>> > Hi all, >>> > >>> > When I examining the galoisplynomail source code I found that >>> irreducibility >>> > test is not implemented. Is there any special reason? >>> >>> basically irreducibility can be tested via factorization and usually you >>> need those factors in your work anyway, so there was no need to implement >>> any kind of irreducibility testing (mostly because the main objective for >>> galoispolys.py is to serve as basis for factorization algorithms over >>> integers). >>> >>> However, for some time I see increasing interest in finite fields in >>> SymPy >>> so in the new version of polynomials manipulation module (as mentioned by >>> Vinzent) all this low-level function is exposed to the user. This way >>> implementing a irreducibility testing algorithm(s) might be a good idea. >>> >>> > As I read there are several algorithms for that >>> > and Rabin's irreducibility test >>> > is an interesting one. Can we implement that in sympy? >>> > >>> >>> There plenty of them. I went a head and pushed a simple implementation >>> to polys5 branch (see previous E-mail). There are some examples in the >>> commit message. Rabin's algorithm or any other, why not, just send a >>> patch applicable on top of polys5 and will see. >>> >>> > Regards, >>> > Kasun >>> > >>> > -- >>> > You received this message because you are subscribed to the Google >>> Groups "sympy" group. >>> > To post to this group, send email to [email protected]. >>> > To unsubscribe from this group, send email to >>> [email protected]<sympy%[email protected]> >>> . >>> > For more options, visit this group at >>> http://groups.google.com/group/sympy?hl=en. >>> > >>> >>> -- >>> Mateusz >>> >>> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "sympy" group. >> To post to this group, send email to [email protected]. >> To unsubscribe from this group, send email to >> [email protected]. >> For more options, visit this group at >> http://groups.google.com/group/sympy?hl=en. >> >> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "sympy" group. >> To post to this group, send email to [email protected]. >> To unsubscribe from this group, send email to >> [email protected] <sympy%[email protected]> >> . >> For more options, visit this group at >> http://groups.google.com/group/sympy?hl=en. >> > > > -- > You received this message because you are subscribed to the Google Groups > "sympy" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/sympy?hl=en. > > > -- > You received this message because you are subscribed to the Google Groups > "sympy" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected] <sympy%[email protected]>. > For more options, visit this group at > http://groups.google.com/group/sympy?hl=en. > -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy?hl=en.
