[sage-devel] Re: Wolfram Alpha and Google (Trendalyzer)

2009-05-18 Thread Minh Nguyen
On Tue, May 19, 2009 at 6:08 AM, Jason Grout wrote: > > Minh Nguyen wrote: >> On Wed, Apr 29, 2009 at 12:49 AM, kcrisman wrote: >>> I believe these services are at least partially relevant to this list, >>> particularly the Wolfram announcement. If they have been mentioned >>> recently here, my

[sage-devel] Re: Wolfram Alpha and Google (Trendalyzer)

2009-05-18 Thread Jason Grout
Minh Nguyen wrote: > On Wed, Apr 29, 2009 at 12:49 AM, kcrisman wrote: >> I believe these services are at least partially relevant to this list, >> particularly the Wolfram announcement. If they have been mentioned >> recently here, my apologies. > > Here's a recent article from Groklaw on diff

[sage-devel] Re: statistics in sage

2009-05-18 Thread Harald Schilly
On May 19, 12:11 am, "hou.andrew" wrote: > That would be amazing. It'd be neat to have a lot of graphics already > implemented. the first thing that always comes to my mind is something like or an interface to ggplot2 for sage. http://had.co.nz/ggplot2/ h --~--~-~--~~~

[sage-devel] Re: Wolfram Alpha and Google (Trendalyzer)

2009-05-18 Thread Minh Nguyen
On Wed, Apr 29, 2009 at 12:49 AM, kcrisman wrote: > > I believe these services are at least partially relevant to this list, > particularly the Wolfram announcement. If they have been mentioned > recently here, my apologies. Here's a recent article from Groklaw on differences in "terms of use"

[sage-devel] Re: list of variables in a monomial

2009-05-18 Thread wkehowski
Yes, that is exactly what I wanted! Thanks! On May 18, 9:22 pm, Jason Grout wrote: > Minh Nguyen wrote: > > Hi, > > > On Tue, May 19, 2009 at 3:35 AM, wkehowski wrote: > >> Hello, > > >> How would one find the list of variables in a monomial? > > >> For example, > > >> (p^2 * q^3).exponents() >

[sage-devel] Re: chain complexes over the integers are not abelian

2009-05-18 Thread John H Palmieri
On May 18, 8:43 pm, wkehowski wrote: > What about matrix rings over ZZ? No, but they're not supposed to be. > On May 18, 7:03 pm, John H Palmieri wrote: > > > On May 18, 2:44 pm, benjamin antieau wrote: > > > > Oh, and this is also the case over other base rings, like over GF(p). > > > > On

[sage-devel] Re: list of variables in a monomial

2009-05-18 Thread Jason Grout
Minh Nguyen wrote: > Hi, > > On Tue, May 19, 2009 at 3:35 AM, wkehowski wrote: >> Hello, >> >> How would one find the list of variables in a monomial? >> >> For example, >> >> (p^2 * q^3).exponents() >> >> returns >> >> [(2,3)] >> >> (without using a ring). >> >> Is there a command that will ret

[sage-devel] Re: cpu cache optimization- update: prefetch works wonders

2009-05-18 Thread Michael
Here is an update. I found that I could double the speed of my read/ write from my arrays in the following manner. A few lines ahead of where I increment value [d], I invoke: __builtin_prefetch(&value[d],1,0) which is command that tells the cpu to fetch the given address from ram and put it in th

[sage-devel] Re: strange behaviour with SAGE_LOCAL/lib/python2.5/site.py

2009-05-18 Thread Minh Nguyen
Hi Michael, On Tue, May 19, 2009 at 3:50 AM, mabshoff wrote: > > > > On May 18, 8:43 pm, Minh Nguyen wrote: >> Hi folks, > > > >> python setup.py install --home="$SAGE_LOCAL" --force > > This should not be needed, i.e > > python setup.py install > > should just work. > > Re site.py - http://p

[sage-devel] Re: list of variables in a monomial

2009-05-18 Thread Minh Nguyen
Hi, On Tue, May 19, 2009 at 3:35 AM, wkehowski wrote: > > Hello, > > How would one find the list of variables in a monomial? > > For example, > > (p^2 * q^3).exponents() > > returns > > [(2,3)] > > (without using a ring). > > Is there a command that will return something like [(p,q)] or [(p,2),

[sage-devel] Re: chain complexes over the integers are not abelian

2009-05-18 Thread wkehowski
What about matrix rings over ZZ? On May 18, 7:03 pm, John H Palmieri wrote: > On May 18, 2:44 pm, benjamin antieau wrote: > > > > > Oh, and this is also the case over other base rings, like over GF(p). > > > On May 18, 2:43 pm, benjamin antieau wrote: > > > > I noticed the following incorrect

[sage-devel] list of variables in a monomial

2009-05-18 Thread wkehowski
Hello, How would one find the list of variables in a monomial? For example, (p^2 * q^3).exponents() returns [(2,3)] (without using a ring). Is there a command that will return something like [(p,q)] or [(p,2), (q,3)]? --~--~-~--~~~---~--~~ To post to this gr

[sage-devel] Re: strange behaviour with SAGE_LOCAL/lib/python2.5/site.py

2009-05-18 Thread mabshoff
On May 18, 8:43 pm, Minh Nguyen wrote: > Hi folks, > python setup.py install --home="$SAGE_LOCAL" --force This should not be needed, i.e python setup.py install should just work. Re site.py - http://pypi.python.org/pypi/workingenv.py seems to indicate your environment is messed up. Ch

[sage-devel] strange behaviour with SAGE_LOCAL/lib/python2.5/site.py

2009-05-18 Thread Minh Nguyen
Hi folks, In my attempt to update the NetworkX spkg to version 0.99 (see trac #6041), I notice a little strange behaviour with the file SAGE_LOCAL/lib/python2.5/site.py and would appreciate getting some explanation or pointers to further details. Here's a toy example to illustrate what I'm tryi

[sage-devel] Re: chain complexes over the integers are not abelian

2009-05-18 Thread John H Palmieri
On May 18, 2:44 pm, benjamin antieau wrote: > Oh, and this is also the case over other base rings, like over GF(p). > > On May 18, 2:43 pm, benjamin antieau wrote: > > > > > I noticed the following incorrect behavior. > > > sage: C=simplicial_complexes.ChessboardComplex(3,3).chain_complex() > >

[sage-devel] Re: A little Mac OS program that launches SAGE running in local notebook mode...

2009-05-18 Thread Jonathan
What I've put together is about the same size as what you are talking about. I do remember seeing something in one of the distributions I got that did not work. What I've written should work as long as it is in the same directory as the sage executable file. It does not care where that is since

[sage-devel] Re: A little Mac OS program that launches SAGE running in local notebook mode...

2009-05-18 Thread mabshoff
On May 18, 5:50 pm, William Stein wrote: > On Mon, May 18, 2009 at 5:40 PM, mabshoff wrote: > > There is already code in Sage to create a Sage app since Sage 3.3, but > > it needs some more polish and hasn't been turned on per default. But > > feel free to send along the code since maybe we

[sage-devel] Re: A little Mac OS program that launches SAGE running in local notebook mode...

2009-05-18 Thread William Stein
On Mon, May 18, 2009 at 5:40 PM, mabshoff wrote: > > > > On May 18, 5:35 pm, Jonathan wrote: > > Hi Jonathan, > >> I've been using SAGE with one of my chemistry classes this last >> semester and in the process wrote a little AppleScript that launches >> SAGE and starts the notebook in local mode

[sage-devel] Re: A little Mac OS program that launches SAGE running in local notebook mode...

2009-05-18 Thread mabshoff
On May 18, 5:35 pm, Jonathan wrote: Hi Jonathan, > I've been using SAGE with one of my chemistry classes this last > semester and in the process wrote a little AppleScript that launches > SAGE and starts the notebook in local mode.  I think this is a little > easier to deal with than the pres

[sage-devel] A little Mac OS program that launches SAGE running in local notebook mode...

2009-05-18 Thread Jonathan
I've been using SAGE with one of my chemistry classes this last semester and in the process wrote a little AppleScript that launches SAGE and starts the notebook in local mode. I think this is a little easier to deal with than the present MacOS instructions, so thought I would make it available.

[sage-devel] Re: [Sage Bug Report] Wrong matplotlibrc used if user has one in ~/.matplotlib

2009-05-18 Thread Jason Grout
Brian Granger wrote: >> Details are here: http://trac.sagemath.org/sage_trac/ticket/4774 > > I have skimmed though this as well as the previous thread on this > topic. But, it still seems like the original problem remains (Sage's > matplotlib using the wrong matplotlibrc) even though Sage no lon

[sage-devel] Re: [Sage Bug Report] Wrong matplotlibrc used if user has one in ~/.matplotlib

2009-05-18 Thread Brian Granger
> Details are here: http://trac.sagemath.org/sage_trac/ticket/4774 I have skimmed though this as well as the previous thread on this topic. But, it still seems like the original problem remains (Sage's matplotlib using the wrong matplotlibrc) even though Sage no longer includes its own matplotli

[sage-devel] Re: [Sage Bug Report] Wrong matplotlibrc used if user has one in ~/.matplotlib

2009-05-18 Thread Brian Granger
OK On Mon, May 18, 2009 at 3:31 PM, Michael Abshoff wrote: > > Hi Brian, > > no need to CC me on bug reports you send to sage-devel. > > Cheers, > > Michael > > > > --~--~-~--~~~---~--~~ To post to this group, send email to sage-devel@googlegroups.com To unsubscr

[sage-devel] Re: [Sage Bug Report] [possibly?] sage -sh problems on OS X

2009-05-18 Thread Brian Granger
> Well I don't like it.   So it sounds like a bug to me. OK thanks. Could you or someone with a Sage Trac account create a ticket for this? Oh, and Ondrej tried this on Linux but did not see this bug. Cheers, Brian --~--~-~--~~~---~--~~ To post to this group,

[sage-devel] Re: [Sage Bug Report] [possibly?] sage -sh problems on OS X

2009-05-18 Thread William Stein
On Mon, May 18, 2009 at 3:03 PM, Brian Granger wrote: > > Hi, > > I want to use sage -sh to have my environment variables setup > properly.  But on OS X sage -sh behaves in a very odd manner. > > * /Users/bgranger/Sage/sage appears multiple times. > * The bin directory of Sage in put after some o

[sage-devel] Re: [Sage Bug Report] Wrong matplotlibrc used if user has one in ~/.matplotlib

2009-05-18 Thread Michael Abshoff
Hi Brian, no need to CC me on bug reports you send to sage-devel. Cheers, Michael --~--~-~--~~~---~--~~ To post to this group, send email to sage-devel@googlegroups.com To unsubscribe from this group, send email to sage-devel-unsubscr...@googlegroups.com For mo

[sage-devel] Re: [Sage Bug Report] Wrong matplotlibrc used if user has one in ~/.matplotlib

2009-05-18 Thread Jason Grout
Brian Granger wrote: > True, we fixed this in SPD because it is a problem there, however, I > also have this problem with Sage. I download Sage, install it, and it > doesn't work (because I have a .matplotlib/matplotlibrc file). > > I will look around for previous posts on this though. > Detai

[sage-devel] Re: statistics in sage

2009-05-18 Thread hou.andrew
That would be amazing. It'd be neat to have a lot of graphics already implemented. Thanks! ~Andrew On May 18, 10:31 am, David Joyner wrote: > On Mon, May 18, 2009 at 1:10 PM, hou.andrew wrote: > > > My name is Andrew Hou, I'm an undergrad at the UW who is planning to > > work with Prof. Stein

[sage-devel] Re: [Sage Bug Report] Wrong matplotlibrc used if user has one in ~/.matplotlib

2009-05-18 Thread Brian Granger
True, we fixed this in SPD because it is a problem there, however, I also have this problem with Sage. I download Sage, install it, and it doesn't work (because I have a .matplotlib/matplotlibrc file). I will look around for previous posts on this though. Brian On Mon, May 18, 2009 at 2:58 PM,

[sage-devel] [Sage Bug Report] [possibly?] sage -sh problems on OS X

2009-05-18 Thread Brian Granger
Hi, I want to use sage -sh to have my environment variables setup properly. But on OS X sage -sh behaves in a very odd manner. * /Users/bgranger/Sage/sage appears multiple times. * The bin directory of Sage in put after some of my bin directories, making it so Sage's version of things are not u

[sage-devel] Re: [Sage Bug Report] Wrong matplotlibrc used if user has one in ~/.matplotlib

2009-05-18 Thread Ondrej Certik
On Mon, May 18, 2009 at 2:51 PM, Brian Granger wrote: > > Currently: > > IF a user has matplotlib installed outside of Sage > AND they have a matplotlibrc file in ~/.matplotlib > > THEN Sage will use the non-Sage version in ~/.matplotlib/matplotlibrc. >  If a user has set a frontend (such as WxAg

[sage-devel] [Sage Bug Report] Wrong matplotlibrc used if user has one in ~/.matplotlib

2009-05-18 Thread Brian Granger
Currently: IF a user has matplotlib installed outside of Sage AND they have a matplotlibrc file in ~/.matplotlib THEN Sage will use the non-Sage version in ~/.matplotlib/matplotlibrc. If a user has set a frontend (such as WxAgg or any other GUI frontend) that Sage doesn't have (most of them), m

[sage-devel] Re: chain complexes over the integers are not abelian

2009-05-18 Thread benjamin antieau
Oh, and this is also the case over other base rings, like over GF(p). On May 18, 2:43 pm, benjamin antieau wrote: > I noticed the following incorrect behavior. > > sage: C=simplicial_complexes.ChessboardComplex(3,3).chain_complex() > sage: C.category() > Category of chain complexes over Integer

[sage-devel] chain complexes over the integers are not abelian

2009-05-18 Thread benjamin antieau
I noticed the following incorrect behavior. sage: C=simplicial_complexes.ChessboardComplex(3,3).chain_complex() sage: C.category() Category of chain complexes over Integer Ring sage: A=C.category() sage: A.is_abelian() False As far as I can tell ChainComplexes inherits is_abelian from AbelianCat

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread Gonzalo Tornaria
On Mon, May 18, 2009 at 10:37 AM, mabshoff wrote: > I have the desire to fix the dependency problem. i.e. each spkg should > describe its dependencies and we should then use a little script to > turn that into a dependency makefile. The main problem to do this are > at the moment: > >  (a) we nee

[sage-devel] Re: graph construction

2009-05-18 Thread Robert Miller
Rado, First of all, thank you for your improvement! > I was playing with some big(10^6) graphs and noticed SAGE cannot > handle constructing them in good time. I am wondering, what in particular you are using Sage graphs for? Graphs in Sage are currently in a transition period. Some things are

[sage-devel] Re: SPD Status?

2009-05-18 Thread Ondrej Certik
On Mon, May 18, 2009 at 10:54 AM, Kevin Horton wrote: > > I only need a small subset of Sage's capabilities, and one of the > computers I want to use it on has significant hard drive space > issues.  As near as I can tell, the parts of Sage I need are scipy, > numpy, matplotlib, the notebook, plu

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread Ondrej Certik
On Mon, May 18, 2009 at 11:01 AM, Serge A. Salamanka wrote: > >> For Kevin: the aim of SPD is to make it easy to create all in one >> packages with just the stuff that we need (e.g. packages that are >> currently in SPD, like scipy, numpy, notebook and then bunch of custom >> libraries, that don'

[sage-devel] Re: SPD Status?

2009-05-18 Thread Mike Hansen
Hello, On Mon, May 18, 2009 at 10:54 AM, Kevin Horton wrote: > > I only need a small subset of Sage's capabilities, and one of the > computers I want to use it on has significant hard drive space > issues.  As near as I can tell, the parts of Sage I need are scipy, > numpy, matplotlib, the noteb

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread Serge A. Salamanka
> For Kevin: the aim of SPD is to make it easy to create all in one > packages with just the stuff that we need (e.g. packages that are > currently in SPD, like scipy, numpy, notebook and then bunch of custom > libraries, that don't even have a spkg yet). And be compatible with > Sage. That's it.

[sage-devel] SPD Status?

2009-05-18 Thread Kevin Horton
I only need a small subset of Sage's capabilities, and one of the computers I want to use it on has significant hard drive space issues. As near as I can tell, the parts of Sage I need are scipy, numpy, matplotlib, the notebook, plus a bunch of the custom high level functions that sage pr

[sage-devel] Re: Strange behaviour of solve...

2009-05-18 Thread Michel
Fantastic. Thanks a lot!!! I had never heard of this "to_poly_solve function". Regards, Michel On May 18, 7:05 pm, Mike Hansen wrote: > Hello Michel, > > On Sat, May 16, 2009 at 2:59 AM, Michel > wrote: > > > var('Q') > > solve(Q*sqrt(Q^2 + 2) - 1,Q) > > > yields > > > [Q == 1/sqrt(Q^2 + 2)

[sage-devel] Re: statistics in sage

2009-05-18 Thread David Joyner
On Mon, May 18, 2009 at 1:10 PM, hou.andrew wrote: > > My name is Andrew Hou, I'm an undergrad at the UW who is planning to > work with Prof. Stein on statistics support in Sage. > > I'm currently compiling a list of the most important statistics API's > that the big M's offer - MATLAB, Mathemati

[sage-devel] Git Plugin for Mercurial

2009-05-18 Thread Tim Lahey
I'm not sure how many people know about this or need it, but since Sage uses Hg and I know that sympy and myself use Git, I thought it might come in handy for Sage developers, http://hg-git.github.com/ Basically, it allows you to access a Git repository from Mercurial just like the hg-svn bridge

[sage-devel] Re: statistics in sage

2009-05-18 Thread hou.andrew
My name is Andrew Hou, I'm an undergrad at the UW who is planning to work with Prof. Stein on statistics support in Sage. I'm currently compiling a list of the most important statistics API's that the big M's offer - MATLAB, Mathematica, Magma; as well as some other stats programs. I'm going to c

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread mabshoff
On May 18, 10:03 am, mabshoff wrote: > On May 18, 9:50 am, Ondrej Certik wrote: > > > On Mon, May 18, 2009 at 9:29 AM, Brian Granger > > wrote: > > > > > > But, if in the medium term (as Michael is hoping for), the Sage build > > > system can be improved to the point where both Sage and SPD

[sage-devel] Re: Strange behaviour of solve...

2009-05-18 Thread Mike Hansen
Hello Michel, On Sat, May 16, 2009 at 2:59 AM, Michel wrote: > > var('Q') > solve(Q*sqrt(Q^2 + 2) - 1,Q) > > yields > > [Q == 1/sqrt(Q^2 + 2)] > > Not what I was looking for! In Sage 4.0 which will be out in a few days, I added support for Maxima's to_poly_solve function which will handle your

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread mabshoff
On May 18, 9:50 am, Ondrej Certik wrote: > On Mon, May 18, 2009 at 9:29 AM, Brian Granger > wrote: > > But, if in the medium term (as Michael is hoping for), the Sage build > > system can be improved to the point where both Sage and SPD are using > > the same infrastructure, that would hel

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread mabshoff
On May 18, 9:29 am, Brian Granger wrote: > > Not right now.  I'm sure Michael Abshoff would agree that we are way > > too busy just dealing with Sage itself. > > OK, I am not surprised - Sage is an ambitious undertaking. Well, world domination isn't something for weekend warriors ;) > > Howev

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread Brian Granger
> Are the custom libraries going to be .spkg as well? So, people using the > full version of Sage can install them? Yes, definitely. Brian --~--~-~--~~~---~--~~ To post to this group, send email to sage-devel@googlegroups.com To unsubscribe from this group, send

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread Tim Lahey
On May 18, 2009, at 12:50 PM, Ondrej Certik wrote: > > For Kevin: the aim of SPD is to make it easy to create all in one > packages with just the stuff that we need (e.g. packages that are > currently in SPD, like scipy, numpy, notebook and then bunch of custom > libraries, that don't even have

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread Ondrej Certik
On Mon, May 18, 2009 at 9:29 AM, Brian Granger wrote: > >> Not right now.  I'm sure Michael Abshoff would agree that we are way >> too busy just dealing with Sage itself. > > OK, I am not surprised - Sage is an ambitious undertaking. > >> However, note that there are two versions *right now* -- S

[sage-devel] Re: Maple 13

2009-05-18 Thread mark mcclure
On Apr 28, 7:10 pm, William Stein wrote: > Maple13 was released today, I think.   > ... > Looking it over, the only overlap with Sage (current or in > development features) seems to be the following: >     * They now have graph isomorphism testing >     * They now have graph enumeration > ... >

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread Brian Granger
> Not right now.  I'm sure Michael Abshoff would agree that we are way > too busy just dealing with Sage itself. OK, I am not surprised - Sage is an ambitious undertaking. > However, note that there are two versions *right now* -- Sage and SPD > -- and that this is not in any way increasing my w

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread Brian Granger
> Yep, I know you need a trac account and I haven't gotten around to it. > I discussed the patches with Ondrej yesterday in IRC and I would > prefer if you posted them here since last time Ondrej found bugs in > Sage's scripts it turned out mostly to be bugs in the way Ondrej used > them. I don't

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread mabshoff
On May 18, 9:08 am, William Stein wrote: > On Mon, May 18, 2009 at 8:35 AM, Brian Granger > wrote: > > > From a development perspective, it makes no sense to have two separate > > projects (Sage/SPD).  In working on SPD, I have already run into small > > bugs in Sage's infrastructure.  Curren

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread William Stein
On Mon, May 18, 2009 at 8:35 AM, Brian Granger wrote: > > From a development perspective, it makes no sense to have two separate > projects (Sage/SPD).  In working on SPD, I have already run into small > bugs in Sage's infrastructure.  Currently, we have to fix such things > in both SPD and Sage

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread Brian Granger
>From a development perspective, it makes no sense to have two separate projects (Sage/SPD). In working on SPD, I have already run into small bugs in Sage's infrastructure. Currently, we have to fix such things in both SPD and Sage and manage the respective tickets/patches for both projects. Th

[sage-devel] Re: 'report bug' link on sagemath.org?

2009-05-18 Thread mabshoff
On May 18, 8:06 am, Franco Saliola wrote: > On Mon, May 18, 2009 at 3:40 PM, Harald Schilly > > wrote: > > > On May 18, 2:50 pm, mabshoff wrote: > >> Just put in a link to the wiki to a new page called > > >>    http://wiki.sagemath.org/support/ReportingBugs > > > ok, sounds good .. done > >

[sage-devel] Re: 'report bug' link on sagemath.org?

2009-05-18 Thread Franco Saliola
On Mon, May 18, 2009 at 3:40 PM, Harald Schilly wrote: > > On May 18, 2:50 pm, mabshoff wrote: >> Just put in a link to the wiki to a new page called >> >>    http://wiki.sagemath.org/support/ReportingBugs > > ok, sounds good .. done That's perfect. Franco -- --~--~-~--~~

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread Kevin Horton
On 18 May 2009, at 09:40, mabshoff wrote: > On May 18, 6:37 am, mabshoff wrote: >> On May 18, 6:17 am, Kevin Horton wrote: >> >>> On 18 May 2009, at 02:02, William Stein wrote: >> >> >> >>> Will packages created for SPD be usable as-is in Sage, or will they >>> need to be tweaked in some way b

[sage-devel] Re: 'report bug' link on sagemath.org?

2009-05-18 Thread Harald Schilly
On May 18, 2:50 pm, mabshoff wrote: > Just put in a link to the wiki to a new page called > >    http://wiki.sagemath.org/support/ReportingBugs ok, sounds good .. done h --~--~-~--~~~---~--~~ To post to this group, send email to sage-devel@googlegroups.com To uns

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread mabshoff
On May 18, 6:37 am, mabshoff wrote: > On May 18, 6:17 am, Kevin Horton wrote: > > > On 18 May 2009, at 02:02, William Stein wrote: > > > > > Will packages created for SPD be usable as-is in Sage, or will they   > > need to be tweaked in some way before they can be used with Sage? I guess the

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread mabshoff
On May 18, 6:17 am, Kevin Horton wrote: > On 18 May 2009, at 02:02, William Stein wrote: > Will packages created for SPD be usable as-is in Sage, or will they   > need to be tweaked in some way before they can be used with Sage? Yes. > Will there be some sort of automatic installation of

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread Kevin Horton
On 18 May 2009, at 02:02, William Stein wrote: > On Sun, May 17, 2009 at 10:05 PM, Marshall Hampton > wrote: >> >> On May 17, 11:13 pm, Ondrej Certik wrote: >> * at the very end of the presentation there was a discussion about >> numeric stuff. There are tons of computational programs in lots o

[sage-devel] Re: 'report bug' link on sagemath.org?

2009-05-18 Thread mabshoff
On May 18, 5:21 am, Harald Schilly wrote: > On May 18, 11:40 am, Franco Saliola wrote: > > > Perhaps we should add a 'report bug' link on sagemath.org? > > in the notebook, top right, is the "report a problem" link and it > would be easy to include it in the header of sagemath.org, too. > prob

[sage-devel] Re: Help system

2009-05-18 Thread Michel
For some reason the documentation in the reference manual seems to be different from the documentation in the docstrings. I think if the docstrings were sufficiently expanded then it should be possible to extract the reference manual directly from the docstrings. Regards, Michel On May 18, 9:

[sage-devel] Re: 'report bug' link on sagemath.org?

2009-05-18 Thread Harald Schilly
On May 18, 11:40 am, Franco Saliola wrote: > Perhaps we should add a 'report bug' link on sagemath.org? in the notebook, top right, is the "report a problem" link and it would be easy to include it in the header of sagemath.org, too. problem: i'm currently the only one who looks after that lis

[sage-devel] 'report bug' link on sagemath.org?

2009-05-18 Thread Franco Saliola
I received an email from a new user with the following postscript. > P.S. Sorry for contacting you directly, I didn't find a link to report bugs > on the sagemath homepage. Perhaps we should add a 'report bug' link on sagemath.org? Franco -- --~--~-~--~~~---~--~--

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread Ondrej Certik
On Mon, May 18, 2009 at 1:00 AM, William Stein wrote: > > On Sun, May 17, 2009 at 11:47 PM, Ondrej Certik wrote: [...] >> So I guess it's a question of the right balance between features and size. >> >> Ondrej >>= > > At University of Washington, when one downloads the local > site-licensed bina

[sage-devel] Re: statistics in sage

2009-05-18 Thread William Stein
On Mon, May 18, 2009 at 12:34 AM, Harald Schilly wrote: > > > > On May 18, 12:29 am, mhampton wrote: >> So I have started a file basic_stats.py in the stats directory, with a >> ridiculously simple start:... > > I've thought about this about a year ago but had no time to do > anything beyond thi

[sage-devel] Re: graph construction

2009-05-18 Thread mabshoff
Since no one seemed to have dealt with this: This is now #6066 so the patch doesn't get lost. Cheers, Michael --~--~-~--~~~---~--~~ To post to this group, send email to sage-devel@googlegroups.com To unsubscribe from this group, send email to sage-devel-unsubscr.

[sage-devel] Re: Sage Horizon (comments)

2009-05-18 Thread William Stein
On Sun, May 17, 2009 at 11:47 PM, Ondrej Certik wrote: > > On Sun, May 17, 2009 at 10:05 PM, Marshall Hampton > wrote: >> >> >> >> On May 17, 11:13 pm, Ondrej Certik wrote: >> * at the very end of the presentation there was a discussion about >> numeric stuff. There are tons of computational p

[sage-devel] Re: Sage 4.0.alpha0 released!

2009-05-18 Thread Carlo Hamalainen
On Sun, May 17, 2009 at 5:59 PM, mabshoff wrote: > Hmmm. sounds like a buglet. It should be in > >  /home/carlo/sage/test.log > > If that turns out to be true please open a ticket so we fix the > message. In the other case it is a bug, too. I re-ran make && sage -testall and the test.log file tu

[sage-devel] Re: Sage 4.0.alpha0 released!

2009-05-18 Thread Franco Saliola
On Sat, May 16, 2009 at 4:55 PM, mabshoff wrote: > > I have put sage.math, 32 and 64 bit MacIntel, the sources as well as > the upgrade bits into > >   http://sage.math.washington.edu/home/mabshoff/release-cycles-4.0/ On 64-bit Ubuntu 8.10, exactly one doctest failure. sage -t "devel/sage/sage

[sage-devel] Re: statistics in sage

2009-05-18 Thread Harald Schilly
On May 18, 12:29 am, mhampton wrote: > So I have started a file basic_stats.py in the stats directory, with a > ridiculously simple start:... I've thought about this about a year ago but had no time to do anything beyond thinking. I very strongly suggest to introduce a class for storing data (

[sage-devel] Re: [ANN] sage-mode-0.6

2009-05-18 Thread David Roe
Fixes the issues I was having. Thanks! David On Sun, May 17, 2009 at 11:40 AM, Nick Alexander wrote: > > > If you remember, please let me know that everything's good. I have > > some fixes to pyrex mode to make for David Roe and I'd like to release > > a 0.6.1 sometime soon. > > Hi David and ot

[sage-devel] Re: Help system

2009-05-18 Thread Mike Hansen
On Mon, May 18, 2009 at 12:03 AM, David Roe wrote: > I think that adding a section to > http://www.sagenb.org/doc/live/developer/conventions.html#documentation-strings > for TEST and SEE ALSO would be good.  Encouraging people to reference other > functions that they user might be looking for, an

[sage-devel] Re: Feature requests - URLs for published notebook worksheets

2009-05-18 Thread David Roe
Feel free to make a trac ticket for these. That way they won't be lost in peoples' inboxes. Though "feature requests" often lie around until someone has some time and inclination to implement them, at least there's a chance somebody will stumble along and thing "that sounds like a good idea, and

[sage-devel] Re: Help system

2009-05-18 Thread David Roe
I think that adding a section to http://www.sagenb.org/doc/live/developer/conventions.html#documentation-stringsfor TEST and SEE ALSO would be good. Encouraging people to reference other functions that they user might be looking for, and providing an example of how to hyperlink between docstrings,