Re: [sage-devel] installing optional packages requires running sage -b

2014-08-05 Thread Jeroen Demeyer
On 2014-08-05 02:04, kcrisman wrote: Or is gcc and friends required for using sage -i? With a few exceptions (like pure database or pure Python packages), yes. Usually installing packages requires some code to be compiled. -- You received this message because you are subscribed to the Google

[sage-devel] Including private methods in documentation

2014-08-05 Thread Daniel Krenn
What are the (Sage) rules about including private methods in the documentation? I don't mean all, but selected methods. In particular, I think here about FiniteStateMachines.__call__, which runs either .composition (if input is another finite state machine) or .process (if input is a list). Maybe

[sage-devel] Re: Including private methods in documentation

2014-08-05 Thread Simon King
Hi Daniel, On 2014-08-05, Daniel Krenn kr...@aon.at wrote: What are the (Sage) rules about including private methods in the documentation? I don't mean all, but selected methods. In particular, I think here about FiniteStateMachines.__call__, which runs either .composition (if input is

Re: [sage-devel] Re: Including private methods in documentation

2014-08-05 Thread Clemens Heuberger
BTW, sage.databases.oeis.OEISSequence uses .. automethod:: __call__ at the end of the docstring of the class to explicitly include the docstring of their __call__. Am 2014-08-05 um 11:21 schrieb Simon King: Hi Daniel, On 2014-08-05, Daniel Krenn kr...@aon.at wrote: What are the (Sage)

Re: [sage-devel] Re: boxen files almost all gone?!

2014-08-05 Thread Jeroen Demeyer
*ping* Please make available http://boxen.math.washington.edu/home/jdemeyer On 2014-07-31 18:46, Jeroen Demeyer wrote: On 2014-06-17 20:00, William Stein wrote: No worries -- I've added you back to the whitelist -- now your page is fully available again. Please do the same for my account

[sage-devel] howto turn off noice by gperftools

2014-08-05 Thread Martin Raum
Hi, Last spring Volker implemented a wrapper for the Google profiler (thanks!). I have updated the citation module to use it, so that we can capture calls in pyx-code as well. I get the following undesired output: PROFILE: interrupts/evictions/bytes = 0/0/64

[sage-devel] Re: howto turn off noice by gperftools

2014-08-05 Thread Volker Braun
You can filter out warnings if you want to: https://docs.python.org/2/library/warnings.html#the-warnings-filter On Tuesday, August 5, 2014 1:31:56 PM UTC+1, Martin Raum wrote: Hi, Last spring Volker implemented a wrapper for the Google profiler (thanks!). I have updated the citation

[sage-devel] Remove webassets from sagenb?

2014-08-05 Thread Volker Braun
Webassets doesn't install with the new docutils (http://trac.sagemath.org/ticket/16736). What is it used for, and can we just remove it? [~/sagenb-0.10.8.2]$ egrep -r webasset setup.py: , 'webassets' util/fetch_deps.py:, 'webassets=0.7.1'

[sage-devel] GCD in Z/nZ[x]

2014-08-05 Thread Bill Hart
Hi all, I've just noticed that Sage allows univariate polynomial GCD over Z/nZ. I didn't check, but it presumably uses flint for this. There is a notion of GCD in such a ring for n composite, but flint does not implement it. And unfortunately, none of the following happen in flint: 1) an

[sage-devel] Re: Remove webassets from sagenb?

2014-08-05 Thread kcrisman
On Tuesday, August 5, 2014 8:45:34 AM UTC-4, Volker Braun wrote: Webassets doesn't install with the new docutils ( http://trac.sagemath.org/ticket/16736). What is it used for, and can we just remove it? Good question, though presumably for something! In #13121, we have new dependency

[sage-devel] Re: GCD in Z/nZ[x]

2014-08-05 Thread Bill Hart
Sorry, the following line was missing from the example I gave: S.x = PolynomialRing(R) I just forgot to cut-n-paste it from my editor. The example will now demonstrate the behaviour I was talking about. Bill. On Tuesday, 5 August 2014 15:14:22 UTC+2, Bill Hart wrote: Hi all, I've just

[sage-devel] Re: Remove webassets from sagenb?

2014-08-05 Thread Volker Braun
On Tuesday, August 5, 2014 3:06:36 PM UTC+1, kcrisman wrote: By the way, webassets seems to be at 0.11 and perhaps upgrading it would do the trick as well. I tried that already -- You received this message because you are subscribed to the Google Groups sage-devel group. To unsubscribe

[sage-devel] Beezer book plug in AMS Notices

2014-08-05 Thread John Cremona
While it does not mention Sage explicitly, the article by Doob in the August AMS Notices (http://www.ams.org/notices/201407/rnoti-p756.pdf) Open texts on the Web, taking the next step does say this: There is a wonderful example of an electronic textbook that moves beyonf the pdf format. Rob

[sage-devel] Re: howto turn off noice by gperftools

2014-08-05 Thread Martin Raum
Thanks, that's one part. But I'm not too much concerned about the warning, which I fixed by increasing CPUPROFILER_FREQUENCY. But the other three lines are, it seems, printed by the profiler itself. I'm wondering whether there is some option to turn this of (is redirecting stdout an acceptable

[sage-devel] Re: GCD in Z/nZ[x]

2014-08-05 Thread Bill Hart
Actually, unless anyone has a good idea, I think we might just put that n must be prime in the flint documentation. There doesn't seem to be an efficient algorithm for any kind of meaningful GCD over Z/nZ[x]. I don't think we can implement this in flint after all. All you can really guarantee

Re: [sage-devel] On scientific computing, Python and Julia

2014-08-05 Thread rjf
On Sunday, August 3, 2014 10:11:57 PM UTC-7, William wrote: On Sat, Aug 2, 2014 at 11:16 PM, rjf fat...@gmail.com javascript: wrote: On Wednesday, July 30, 2014 10:23:03 PM UTC-7, William wrote: [1] http://maxima.sourceforge.net/docs/manual/en/maxima_29.html Perhaps Axiom and

Re: [sage-devel] On scientific computing, Python and Julia

2014-08-05 Thread Robert Bradshaw
On Tue, Aug 5, 2014 at 6:36 PM, rjf fate...@gmail.com wrote: On Sunday, August 3, 2014 10:11:57 PM UTC-7, William wrote: On Sat, Aug 2, 2014 at 11:16 PM, rjf fat...@gmail.com wrote: On Wednesday, July 30, 2014 10:23:03 PM UTC-7, William wrote: [1]

Re: [sage-devel] Re: Remove webassets from sagenb?

2014-08-05 Thread François Bissey
On Tue, 05 Aug 2014 07:06:36 kcrisman wrote: That took more time to track down than I would have liked. So I guess we can indeed scrap it, though if we can keep samuela's branch compatibility (this is called the newui branch on github) that would be good for honoring that contribution, as

[sage-devel] Re: Remove webassets from sagenb?

2014-08-05 Thread kcrisman
By the way, webassets seems to be at 0.11 and perhaps upgrading it would do the trick as well. I tried that already Okay. Hmm, I guess it would be pretty easy to remove it by just removing those dependencies in two places. If fbissey's option of patching webassets is easier we can do

Re: [sage-devel] Re: Remove webassets from sagenb?

2014-08-05 Thread kcrisman
That took more time to track down than I would have liked. So I guess we can indeed scrap it, though if we can keep samuela's branch compatibility (this is called the newui branch on github) that would be good for honoring that contribution, as someone may have time to do this

[sage-devel] Reocvering from system crash during compile?

2014-08-05 Thread Alasdair
I'm running Ubuntu 14.04 as a guest VM inside VirtualBox 4.3.12, with Windows 7.1 Enterprise as the host OS. (This gives me access to my university's network, networked printers and drives etc, which are unreachable from linux). And in the middle of compling Sage 6.2 from source, while I was

Re: [sage-devel] Re: Remove webassets from sagenb?

2014-08-05 Thread P Purkayastha
Is any Sage developer working on Cantor? I used it a couple of years ago, and found it lacking (will have to look at it again to recall the issues I had with it). It seemed like it had a lot of potential though. On Wednesday, August 6, 2014 11:46:07 AM UTC+8, François wrote: On Tue, 05 Aug

[sage-devel] Re: Reocvering from system crash during compile?

2014-08-05 Thread P Purkayastha
Try to rebuild the whole thing again, just so as to ensure that everything is properly built. make distclean make On Wednesday, August 6, 2014 12:46:47 PM UTC+8, Alasdair wrote: I'm running Ubuntu 14.04 as a guest VM inside VirtualBox 4.3.12, with Windows 7.1 Enterprise as the host OS.