[sage-devel] Re: how to unsubscribe from Trac ticket updates

2015-02-20 Thread Ralf Stephan
On Friday, February 20, 2015 at 10:46:15 PM UTC+1, Robert Dodier wrote: > > Hi, I have been getting email updates for a ticket that I commented > on a long time ago and I was wondering if I can unsubscribe from the > updates. I know at least one way: review the ticket! The author is usually res

[sage-devel] Re: Sage Enhancement Proposal: Edwards Curves Library

2015-02-20 Thread Adarsh Saraf
Hi Martin, Basically the module that I have written implements the Edwards model as an 'EdwardsCurve' class with an accompanying "EdwardsCurvePoint" class. For the methods that I have implemented, I have tried to mimic those in the Elliptic Curves library already in Sage. But I do not have diff

Re: [sage-devel] Re: [debian] Strange numerical errors in sage's libpari code

2015-02-20 Thread Michael Orlitzky
On 02/20/2015 11:02 AM, kcrisman wrote: > >> >> I no longer use sage for my day-to-day work, but when I was and I had to >> e.g. give a presentation, it was infuriating to find sage broken AGAIN >> > > ??? I assume this is because you updated some dependency and Sage didn't > work quite proper

[sage-devel] Re: formatted latex-output / typeset in ipython notebook

2015-02-20 Thread Sébastien Labbé
In March 2014 [1], I was able to make this work with this: from IPython.display import display, Math def my_show(obj): return display(Math(latex(obj))) y = 1 / (x^2+1) my_show(y) I don't know if it still works or if there is some better way now. [1] http://www.liafa.univ-paris-diderot.fr/~la

[sage-devel] Re: Sage 6.5, pyzmq, Fedora GCC

2015-02-20 Thread Volker Braun
You need to build the zeromq library before building the python binding for it: sage -f zeromq && sage -f pyzmq Definitely works on Fedora 21 On Friday, February 20, 2015 at 11:35:10 AM UTC+1, Jori Mantysalo wrote: > > FYI when trying to make Sage[math] 6.5 on Fedora 21 I got > > - - - -

[sage-devel] how to unsubscribe from Trac ticket updates

2015-02-20 Thread Robert Dodier
Hi, I have been getting email updates for a ticket that I commented on a long time ago and I was wondering if I can unsubscribe from the updates. I gather that if one is named in the Cc: list on the ticket, one can unsubscribe, but I am not so named. I don't see any other way on the ticket itself,

Re: [sage-devel] Re: paste by middle-click in ipython notebook

2015-02-20 Thread Volker Braun
I can confirm that it doesn't work with Firefox, but it does work with Chrome. Apparently its a known issue (since 2012): https://github.com/ipython/ipython/issues/1677/ On Friday, February 20, 2015 at 7:17:57 PM UTC+1, Daniel Krenn wrote: > > Am 2015-02-20 um 17:36 schrieb Volker Braun: > >

Re: [sage-devel] Re: paste by middle-click in ipython notebook

2015-02-20 Thread Daniel Krenn
Am 2015-02-20 um 17:36 schrieb Volker Braun: > Works for me... Only on Linux of course, Windows/OSX don't have middle > mouse button paste. I'm using Linux (and Firefox as browser) Daniel -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubs

Re: [sage-devel] Re: [debian] Strange numerical errors in sage's libpari code

2015-02-20 Thread William Stein
>> In all honesty, I think you should throw golden bridges to people like >> Julien and Francois who are doing all this heavy-lifting work on the What is a "golden bridge"? >> software engineering side of things. I think that having sage integrating >> with distro packages would not only be a ben

Re: [sage-devel] Fwd: [sage-coding-theory] Coding Theory development project. Request-for-comments: New code family and encoder/decoder structu

2015-02-20 Thread Nathann Cohen
Hello, It seems that you really implemented a lot of things before creating any ticket on Sage's trac. Be aware that the reviews may be very painful as a result, for some fundamental design decisions may have to be changed in this process. Nathann On 20 February 2015 at 18:32, Dima Pasechnik wr

[sage-devel] Fwd: [sage-coding-theory] Coding Theory development project. Request-for-comments: New code family and encoder/decoder structu

2015-02-20 Thread Dima Pasechnik
-- Forwarded message -- From: "Johan S. R. Nielsen" Date: 20 Feb 2015 17:24 Subject: [sage-coding-theory] Coding Theory development project. Request-for-comments: New code family and encoder/decoder structu To: Cc: Hello everyone, As we announced previously ( https://groups.goog

[sage-devel] Fwd: Coding Theory development project. Request-for-comments: New code family and encoder/decoder structu

2015-02-20 Thread Johan S. R. Nielsen
Hi sage-devel, An update from our coding theory development project. On Friday, February 20, 2015 at 6:24:01 PM UTC+1, Johan S. R. Nielsen wrote: > > Hello everyone, > > As we announced previously ( > https://groups.google.com/forum/#!topic/sage-devel/pBmeknQcyZM), we > started October 1. a 2-ye

Re: [sage-devel] Re: Sage trac : can't stay logged in

2015-02-20 Thread Volker Braun
Not-so-transparent transparent proxy, always good for a laugh... On Friday, February 20, 2015 at 5:59:50 PM UTC+1, Snark wrote: > > > > Le 19/02/2015 17:20, Julien Puydt a écrit : > > Le 19/02/2015 16:30, Volker Braun a écrit : > >> worked for me... > > > > Sigh... still doesn't... so there'

Re: [sage-devel] Re: Sage trac : can't stay logged in

2015-02-20 Thread Julien Puydt
Le 19/02/2015 17:20, Julien Puydt a écrit : Le 19/02/2015 16:30, Volker Braun a écrit : worked for me... Sigh... still doesn't... so there's a problem on my end :-( Cleared everything I could, checked I didn't block anything, the logged in, refreshed, still logged in, tried to add myself

[sage-devel] Re: paste by middle-click in ipython notebook

2015-02-20 Thread Volker Braun
Works for me... Only on Linux of course, Windows/OSX don't have middle mouse button paste. On Friday, February 20, 2015 at 5:25:17 PM UTC+1, Daniel Krenn wrote: > > Pasting previously marked text by middle-click does not work in the > ipython notebook. Any ideas why? > > Daniel > -- You rec

[sage-devel] formatted latex-output / typeset in ipython notebook

2015-02-20 Thread Daniel Krenn
Dear all, what is the status in Sage's ipython notebook about showing formulas (its Latex-representation) inline by, e.g., view(x^42+1) ? Daniel -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receivin

[sage-devel] paste by middle-click in ipython notebook

2015-02-20 Thread Daniel Krenn
Pasting previously marked text by middle-click does not work in the ipython notebook. Any ideas why? Daniel -- 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-d

Re: [sage-devel] sage-6.5.1?

2015-02-20 Thread Jan Groenewald
Thanks, I am maintaining the PPA and keeping an eye on this. We also plan to add 32bit over the next month or three, though our focus is on LTS. Regards, Jan On 20 February 2015 at 18:09, Thierry wrote: > Hi, > > On Fri, Feb 20, 2015 at 07:47:59AM -0800, Jean-Pierre Flori wrote: > > > > On F

Re: [sage-devel] sage-6.5.1?

2015-02-20 Thread Thierry
Hi, On Fri, Feb 20, 2015 at 07:47:59AM -0800, Jean-Pierre Flori wrote: > > On Friday, February 20, 2015 at 4:29:38 PM UTC+1, John Cremona wrote: > > > > On 20 February 2015 at 15:10, Vincent Delecroix > > <20100.d...@gmail.com > wrote: > > > Hello, > > > > > > We do have two very serious crit

Re: [sage-devel] Re: [debian] Strange numerical errors in sage's libpari code

2015-02-20 Thread kcrisman
> > I no longer use sage for my day-to-day work, but when I was and I had to > e.g. give a presentation, it was infuriating to find sage broken AGAIN > ??? I assume this is because you updated some dependency and Sage didn't work quite properly somewhere in its bowels with that? I've never on

Re: [sage-devel] Re: [debian] Strange numerical errors in sage's libpari code

2015-02-20 Thread kcrisman
I ignored this thread because of the title, but I guess I shouldn't have! > general the combinatorial explosion of configurations to debug is way >> too large and it is next to impossible to find any distribution where >> the version numbers even remotely match. We updated to GAP 4.4.12 in >> >>

Re: [sage-devel] sage-6.5.1?

2015-02-20 Thread Jean-Pierre Flori
On Friday, February 20, 2015 at 4:29:38 PM UTC+1, John Cremona wrote: > > On 20 February 2015 at 15:10, Vincent Delecroix > <20100.d...@gmail.com > wrote: > > Hello, > > > > We do have two very serious critical bug with the new version 6.5, > namely > > * #17806 (MPIR compilation) > > *

Re: [sage-devel] Re: [debian] Strange numerical errors in sage's libpari code

2015-02-20 Thread Volker Braun
There is no deceit, libgap is the gap source made useable as a shared libary. Its not like git/libgit who don't share a line of code... On Friday, February 20, 2015 at 8:23:20 AM UTC+1, Snark wrote: > > Hi, > > Le 20/02/2015 01:07, Volker Braun a écrit : > > On Thursday, February 19, 2015 at 6

Re: [sage-devel] sage-6.5.1?

2015-02-20 Thread John Cremona
On 20 February 2015 at 15:10, Vincent Delecroix <20100.delecr...@gmail.com> wrote: > Hello, > > We do have two very serious critical bug with the new version 6.5, namely > * #17806 (MPIR compilation) > * #17816 (flint polynomial gcd) > The first one is waiting for a fix while the second is in pos

[sage-devel] sage-6.5.1?

2015-02-20 Thread Vincent Delecroix
Hello, We do have two very serious critical bug with the new version 6.5, namely * #17806 (MPIR compilation) * #17816 (flint polynomial gcd) The first one is waiting for a fix while the second is in positive review. Both bugs are worth for a new stable release. What do you think of having a sage

Re: [sage-devel] Re: [debian] Strange numerical errors in sage's libpari code

2015-02-20 Thread Francesco Biscani
Hello William, On 20 February 2015 at 01:22, William Stein wrote: > > This has been discussed over and over again and it plainly doesn't > work. The Sage in Debian does not pass doctests, not even close. In > general the combinatorial explosion of configurations to debug is way > too large and it

[sage-devel] Re: Sage Enhancement Proposal: Edwards Curves Library

2015-02-20 Thread Samuel Lelievre
cc:ing sage-nt 2015-02-20 10:04:37 UTC+1, Adarsh Saraf: > > Hello everybody, > > As part of my Masters thesis, I have developed a module related to the > Edwards model for Elliptic Curves. I was of the opinion that it would be > helpful for many if it can be integrated into Sage. Would like to

Re: [sage-devel] Sage 6.5, pyzmq, Fedora GCC

2015-02-20 Thread Jeroen Demeyer
On 2015-02-20 11:30, Jori Mantysalo wrote: FYI when trying to make Sage[math] 6.5 on Fedora 21 I got - - - - gcc build/temp.linux-x86_64-2.7/scratch/vers.o -L/home/jm58660/sage-6.5/local/lib -Wl,-R/home/jm58660/sage-6.5/local/lib -lzmq -lrt -o build/temp.linux-x86_64-2.7/scratch/vers /home/jm

Re: [sage-devel] Sage 6.5, pyzmq, Fedora GCC

2015-02-20 Thread Jori Mantysalo
On Fri, 20 Feb 2015, Francois Bissey wrote: And what linker do you use by default? GNU ld version 2.24, which is shipped with Fedora. I don’t expect using sage’s gcc to improve the situation if it is a linker issue. At least now compilation has gone past pyzmq and logfile says "Successful

Re: [sage-devel] Sage 6.5, pyzmq, Fedora GCC

2015-02-20 Thread Francois Bissey
And what linker do you use by default? This error is because libstdc++ is not explicitly included in the linking line. It wouldn’t be a problem if g++ was used for linking but here gcc is used. So it means that libzmq.so is underlinked with regards to libstdc++ or that your linker requires expli

[sage-devel] Sage 6.5, pyzmq, Fedora GCC

2015-02-20 Thread Jori Mantysalo
FYI when trying to make Sage[math] 6.5 on Fedora 21 I got - - - - gcc build/temp.linux-x86_64-2.7/scratch/vers.o -L/home/jm58660/sage-6.5/local/lib -Wl,-R/home/jm58660/sage-6.5/local/lib -lzmq -lrt -o build/temp.linux-x86_64-2.7/scratch/vers /home/jm58660/sage-6.5/local/lib/libzmq.so: undefin

Re: [sage-devel] Sage Enhancement Proposal: Edwards Curves Library

2015-02-20 Thread Martin Albrecht
Hi, can you perhaps give a bit more context? Firstly, I'm not sure everybody here knows why Edwards curves are cool. Secondly, what does your library do and how does that compare to everything else out there. Cheers, Martin On Friday 20 Feb 2015 01:04:36 Adarsh Saraf wrote: > Hello everybody,

Re: [sage-devel] Re: [sage-support] Bug in polynomial GCD (FLINT)

2015-02-20 Thread Vincent Delecroix
This is now #17816 (needs review). I based it over sage-6.5. That way, it is still possible to include it in a stable release... Vincent -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails fro

[sage-devel] Sage 6.5 and pyopenssl [was: Re: Several bugs]

2015-02-20 Thread Daniel Krenn
Am 2015-02-19 um 17:46 schrieb Enrique Artal: > 4. Finally, the last problem appeared when compiling sage-6.5 with ssl. > I followed the standard instructions (which worked in the previous > versions) but the compilation of pyopenssl fails. It complains for > the compilation of crl.c b

[sage-devel] Re: GSoC projects

2015-02-20 Thread Harald Schilly
On Wednesday, February 11, 2015 at 5:03:45 AM UTC+1, William wrote: > > Does anybody have any GSoC projects to add to ... > > Short update: Today is the proposal submission deadline. We are already set up for this. What still needs a little bit of further attention is the wiki page for projec

[sage-devel] Re: Sage is grown up; needs a last name

2015-02-20 Thread Adarsh Saraf
+1 from my side. I have often had to type sagemath anyways to google for sage. -- 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-devel+unsubscr...@googlegroup

[sage-devel] Sage Enhancement Proposal: Edwards Curves Library

2015-02-20 Thread Adarsh Saraf
Hello everybody, As part of my Masters thesis, I have developed a module related to the Edwards model for Elliptic Curves. I was of the opinion that it would be helpful for many if it can be integrated into Sage. Would like to know if you also feel the same and if I should open a ticket on the

Re: [sage-devel] Re: [debian] Strange numerical errors in sage's libpari code

2015-02-20 Thread Jeroen Demeyer
On 2015-02-19 18:54, Michael Orlitzky wrote: On 02/19/2015 11:24 AM, Jeroen Demeyer wrote: On 2015-02-19 16:55, Michael Orlitzky wrote: It's not incompatibility with Debian that's the problem. Having dependencies like "whatever was in the git repo at 11:00 on 2015-02-19 UTC-5" leads to madness.

Re: [sage-devel] Sage is grown up; needs a last name

2015-02-20 Thread Harald Schilly
On Fri, Feb 20, 2015 at 10:08 AM, mmarco wrote: > Should we change the way to cite it? (i.e. this page in the wiki: > http://wiki.sagemath.org/Publications_using_SAGE) Maybe, when I changed all the strings on the website (hopefully nothing is seriously broken) ... it's not a trivial replacement .

Re: [sage-devel] Sage is grown up; needs a last name

2015-02-20 Thread mmarco
Should we change the way to cite it? (i.e. this page in the wiki: http://wiki.sagemath.org/Publications_using_SAGE) El viernes, 20 de febrero de 2015, 2:59:54 (UTC+1), kcrisman escribió: > > Seen on social media: > > >> Just got the surname "Math", to disambiguate with other Sages out there. >

[sage-devel] Re: Several bugs

2015-02-20 Thread mmarco
+1 to writing a class for localizations of polynomial rings with respect to orderings. El jueves, 19 de febrero de 2015, 18:43:15 (UTC+1), Enrique Artal escribió: > > I did not know this ticket but it is a related problem. I guess, following > also Simon, that the best choice is to create somet

Re: [sage-devel] Re: [debian] Strange numerical errors in sage's libpari code

2015-02-20 Thread Julien Puydt
Hi, Le 20/02/2015 01:22, William Stein a écrit : On Thu, Feb 19, 2015 at 12:51 PM, Francesco Biscani wrote: On 19 February 2015 at 18:05, Julien Puydt wrote: All distributions have thousands of packages, and deps are not a big issue. Sage-the-distribution has about a hundred, and it's a big