[sage-devel] Re: SageMath has been accepted as an GSoC 2016 mentor org

2016-02-29 Thread Stefan van Zwam
Also: yay! A huge thanks to you and the other admins for putting in all the work to get this off the ground! -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-

Re: [sage-devel] Re: subs deprecation -- what the heck?!

2016-02-29 Thread William Stein
Thanks to Andrzej and John for the clarification. I thought a lot about this before emailing sage-devel, yet still didn't realize it was "y(3)" that caused the problem. Thanks for the help. On Mon, Feb 29, 2016 at 3:11 PM, John H Palmieri wrote: >> (1) trac #5930 hasn't been touched in *7 year

Re: [sage-devel] subs deprecation -- what the heck?!

2016-02-29 Thread Andrzej Giniewicz
Hi, isn't this comming from y(3)? Using either sol1.subs({y(x=3):4}) or y(x)= function('y')(x) makes the warning disappear. Nonetheless I also got lot of questions from students about this warning. Regards, Andrzej. On Mon, Feb 29, 2016 at 11:55 PM, William Stein wrote: > Hi, > > Somebo

[sage-devel] Re: subs deprecation -- what the heck?!

2016-02-29 Thread John H Palmieri
On Monday, February 29, 2016 at 2:56:06 PM UTC-8, William wrote: > > Hi, > > Somebody doing differential equations sent me this code, which you can > run in a fresh sage-6.9 session: > > var('x,y') > y= function('y')(x) > eqn = diff(x^2+y^2==25,x) > sol0 = solve(eqn, diff(y,x)) > sol1 =

[sage-devel] subs deprecation -- what the heck?!

2016-02-29 Thread William Stein
Hi, Somebody doing differential equations sent me this code, which you can run in a fresh sage-6.9 session: var('x,y') y= function('y')(x) eqn = diff(x^2+y^2==25,x) sol0 = solve(eqn, diff(y,x)) sol1 = sol0[0].subs({x:3}) sol1.subs({y(3):4}) The *last line* outputs: D[0](y)(3) == (-3/4) Dep

[sage-devel] Re: [sage-gsoc-mentors] SageMath has been accepted as an GSoC 2016 mentor org

2016-02-29 Thread Stefan van Zwam
Hi Harald, I don’t see anywhere for mentors to sign up, but I will make myself available again this year. Cheers, Stefan. > On Feb 29, 2016, at 2:39 PM, Harald Schilly wrote: > > Hi, just a quick note to everyone: SageMath has yet again been > accepted as a mentoring organization for this

Re: [sage-devel] Should the 2015 Spies Prize be accorded to Nathann Cohen?

2016-02-29 Thread kcrisman
> > >>> >> >> Well, it's not about the money. He can refuse the money, but still be the >> person selected to get the prize. >> > > By "this" he means the prize. Just like Perelmen. > > Nonetheless, there wasn't a "backup" Fields Medalist so, at least in principle, one could award it anyway,

[sage-devel] SageMath has been accepted as an GSoC 2016 mentor org

2016-02-29 Thread Harald Schilly
Hi, just a quick note to everyone: SageMath has yet again been accepted as a mentoring organization for this years GSoC More info on their new website here: https://summerofcode.withgoogle.com Next step: everyone who is interested to be a mentor, or at least help us dealing with applications, etc

Re: [sage-devel] quotient rings, mpolynomial rings, and monomial_divides

2016-02-29 Thread David Roe
On Mon, Feb 29, 2016 at 9:19 AM, Ben Hutz wrote: > I was exploring some quotient ring operations and came across the > following: > > {{{ > R.=QQ[] > K.=NumberField(y^3 + 2*y - 2401) > k.=K.quo(K.prime_factors(7)[1]) > R.=PolynomialRing(k) > R.monomial_divides(y,x^3*y) > Error > }}} > > {{{ > R.=

Re: [sage-devel] Re: The Sage Project (Nathann Cohen)

2016-02-29 Thread William Stein
On Mon, Feb 29, 2016 at 2:35 AM, Erik Bray wrote: > On Fri, Feb 26, 2016 at 4:54 PM, William Stein wrote: >> On Fri, Feb 26, 2016 at 4:44 AM, parisse >>> That's probably the reason why Maple, >>> Mathematica and Matlab are commercial softwares: people doing the boring >>> work want to be rewarded

Re: [sage-devel] GSOC 2016-Regression test framework

2016-02-29 Thread Jayamine A.
On Monday, February 29, 2016 at 3:16:37 PM UTC+5:30, Erik Bray wrote: > > Hi, > > I apologize if I don't fully follow the context to this thread, but I > saw the mention of performance testing, in particular in the context > of regression tests, and I thought I would bring up a project Mike >

Re: [sage-devel] quotient rings, mpolynomial rings, and monomial_divides

2016-02-29 Thread Ben Hutz
Yes, I certainly understand the residue field behavior, but the Zmod behavior seemed weird. It is clearly not checking primality, but there does seem to be some kind of size limit that affects what happens. I couldn't find where this is in the code. For my situations I'd typically be willing to

Re: [sage-devel] GSOC 2016-Regression test framework

2016-02-29 Thread Volker Braun
On Monday, February 29, 2016 at 2:08:29 PM UTC+1, Jeroen Demeyer wrote: > > significantly slow down tests are flagged. Ideally, with very little > false positives (I think that the test for startup time in the patchbot > has too many false positives). > I'm pretty sure that they are actual slow

Re: [sage-devel] Vote for making "meataxe" optional

2016-02-29 Thread Volker Braun
Just to point out the obvious, the error is almost at 2^32 so it is a problem with large file support. On Monday, February 29, 2016 at 10:19:49 AM UTC+1, Jeroen Demeyer wrote: > > Test 0222: File i/o: integer > *** ERROR:Unexpected value 4294898226 at position 1 > -- You received this messag

Re: [sage-devel] quotient rings, mpolynomial rings, and monomial_divides

2016-02-29 Thread John Cremona
On 29 February 2016 at 14:19, Ben Hutz wrote: > I was exploring some quotient ring operations and came across the following: > > {{{ > R.=QQ[] > K.=NumberField(y^3 + 2*y - 2401) > k.=K.quo(K.prime_factors(7)[1]) > R.=PolynomialRing(k) > R.monomial_divides(y,x^3*y) > Error > }}} > > {{{ > R.=QQ[] >

[sage-devel] quotient rings, mpolynomial rings, and monomial_divides

2016-02-29 Thread Ben Hutz
I was exploring some quotient ring operations and came across the following: {{{ R.=QQ[] K.=NumberField(y^3 + 2*y - 2401) k.=K.quo(K.prime_factors(7)[1]) R.=PolynomialRing(k) R.monomial_divides(y,x^3*y) Error }}} {{{ R.=QQ[] K.=NumberField(y^3 + 2*y - 2401) k.=K.residue_field(K.prime_factors(7)[1

Re: [sage-devel] GSOC 2016-Regression test framework

2016-02-29 Thread Jeroen Demeyer
Concerning benchmarking, let me state that timing the tests is the easy part. The hard part is doing something useful with the results. For SageMath, the "doing something useful" part should be to make this part of the continuous integration tests such that patches which significantly slow dow

[sage-devel] Re: Obtaining sage-trac account

2016-02-29 Thread Наташа Харченко
Ok, I'll try to send new letter on the same address. Thank you for quick response! понедельник, 29 февраля 2016 г., 15:37:21 UTC+3 пользователь Harald Schilly написал: > > Hi, so far, we do not even know if SageMath will be selected as an > organization for GSoC. You can make yourself familia

[sage-devel] Re: Obtaining sage-trac account

2016-02-29 Thread Harald Schilly
Hi, so far, we do not even know if SageMath will be selected as an organization for GSoC. You can make yourself familiar with SageMath, of course, but for further activities I propose to wait until we know more. I don't know why you didn't get an answer, maybe your email got lost somewhere, so

[sage-devel] Obtaining sage-trac account

2016-02-29 Thread Наташа Харченко
Hello! I would like to participate in CSoC this year and I need sage-trac account to try to make a small contribution to sage-project. Few days ago I've sent a letter with inquiry on sage-trac-acco...@googlegroups.com, but there is still no response. What should I do? Best regards, Natalie Kha

[sage-devel] Re: Vote for making "meataxe" optional

2016-02-29 Thread Simon King
Hi Jeroen, On 2016-02-29, Jeroen Demeyer wrote: > On 2016-02-29 12:21, Simon King wrote: >> Interesting. I wonder how that can be debugged. I mean, it is file i/o. >> That definitely should work. > > See #20136 (I have no time to fix these issues, but that ticket should > contain enough informat

Re: [sage-devel] Re: Vote for making "meataxe" optional

2016-02-29 Thread Jeroen Demeyer
On 2016-02-29 12:21, Simon King wrote: Interesting. I wonder how that can be debugged. I mean, it is file i/o. That definitely should work. See #20136 (I have no time to fix these issues, but that ticket should contain enough information but somebody to fix it). -- You received this message

[sage-devel] Re: Vote for making "meataxe" optional

2016-02-29 Thread Simon King
Hi Jeroen, On 2016-02-29, Jeroen Demeyer wrote: > On 2016-02-28 10:49, Simon King wrote: >> I'd also like to ask people to test the package on a range of platforms. > > The meataxe testsuite fails on powerpc64le: > > MeatAxe Version 2.4.24 ZZZ=ZZZ 64 Feb 29 2016 10:17:31 $ > Test 0241: Random num

[sage-devel] Re: Vote for making "meataxe" optional

2016-02-29 Thread Simon King
Hi Jeroen, On 2016-02-29, Jeroen Demeyer wrote: > On 2016-02-28 10:49, Simon King wrote: >> Recently, a "MeatAxe" package was added to Sage. Currently, it is >> experimental > > Really? > > jdemeyer@sardonis:~/sage-check$ cat build/pkgs/meataxe/type > optional Yes. But on another Sage list it wa

Re: [sage-devel] Re: The Sage Project (Nathann Cohen)

2016-02-29 Thread Erik Bray
On Fri, Feb 26, 2016 at 4:54 PM, William Stein wrote: > On Fri, Feb 26, 2016 at 4:44 AM, parisse >> That's probably the reason why Maple, >> Mathematica and Matlab are commercial softwares: people doing the boring >> work want to be rewarded for that. And you can not expect to be rewarded by >> th

Re: [sage-devel] GSOC 2016-Regression test framework

2016-02-29 Thread Erik Bray
On Fri, Feb 26, 2016 at 7:10 PM, Jayamine A. wrote: > I read the whole conversation to get an idea > > It is about server side(we can call it developers side). > 1) check the accuracy of each function/method > 2) check the time for each function/method > > Is there other opinions about client sid

Re: [sage-devel] Vote for making "meataxe" optional

2016-02-29 Thread Jeroen Demeyer
On 2016-02-28 10:49, Simon King wrote: I'd also like to ask people to test the package on a range of platforms. The meataxe testsuite fails on powerpc64le: Host system: Linux sardonis 3.19.0-15-generic #15-Ubuntu SMP Thu Apr 16 23:32:13 UTC

Re: [sage-devel] Vote for making "meataxe" optional

2016-02-29 Thread Jeroen Demeyer
On 2016-02-28 10:49, Simon King wrote: Recently, a "MeatAxe" package was added to Sage. Currently, it is experimental Really? jdemeyer@sardonis:~/sage-check$ cat build/pkgs/meataxe/type optional -- You received this message because you are subscribed to the Google Groups "sage-devel" group.