[sage-combinat-devel] Should a one-element poset have a top?

2011-03-05 Thread Andrey Novoseltsev
Hello, I have discovered that a fan consisting only of the origin cannot compute its cone lattice due to the following behaviour: sage: G = DiGraph(1) sage: print G Digraph on 1 vertex sage: P = Poset(G) sage: print P Finite poset containing 1 elements sage: print P.bottom() 0 sage: print

[sage-devel] Re: Preparsing madness...

2011-03-05 Thread Simon King
Hi Robert, On 4 Mrz., 22:18, Robert Bradshaw rober...@math.washington.edu wrote: ... See the PyUnicode_IsIdentifier function. ... which soon refers to two other functions (_PyUnicode_IsXidStart and _PyUnicode_IsXidContinue) that test whether a character is acceptible at the beginning resp. in

[sage-devel] Re: Geogebra (again)

2011-03-05 Thread mmarco
Did you get any further than that? -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-devel URL:

[sage-devel] Re: giac interface

2011-03-05 Thread Han Frederic
On 4 mar, 11:49, Han Frederic h...@math.jussieu.fr wrote: Hello, I'm new to sage, I have tried to adapt the maple.py interface to obtain a giac interface for sage. The current version is there:http://www.math.jussieu.fr/~han/xcas/giac.py one needs a recent giac program. (this week,

Re: [sage-devel] make testlong on 4.6.2 stuck on ecm

2011-03-05 Thread Jan Groenewald
Hi Just spotted this too. Looks like runaway processes. sage does start. root@muizenberg:/usr/local/src/sage#tail testlong.log [0.0 s] sage -t -long -force_lib devel/sage/sage/media/wav.py [1.1 s] --

Re: [sage-devel] make testlong on 4.6.2 stuck on ecm

2011-03-05 Thread Dr. David Kirkby
On 03/ 5/11 09:10 AM, Jan Groenewald wrote: Hi I started a make testlong (4.6.2) on a box which usually completes that in 5 hours. It has been running for 21 hours now. This doesn't seem normal. Description:Ubuntu 10.04.2 LTS model name : Intel(R) Core(TM)2 Duo CPU E8400 @

[sage-devel] Re: Inverse of permutation group elements

2011-03-05 Thread Volker Braun
You need to construct PermutationGroupElements if you want to use group operations: sage: P = PermutationGroupElement([(1,2,3,4,5)]) sage: P^2 (1,3,5,2,4) The sage.combinat.Permutation stuff is presumably about the combinatorics of permutations. Though it would be nice if they could be merged

Re: Re: [sage-devel] Re: About GSoC

2011-03-05 Thread Volker Braun
On Friday, March 4, 2011 2:05:19 PM UTC, Dr. David Kirkby wrote: There are some finite element software based on Python - see for example http://pfem.sourceforge.net/ That project looks pretty much dead. I think it would be better to have a Cython wrapper to some generic finite element /

[sage-devel] Re: Error installing mpir-1.2.2.p2 (building sage-4.6.1/sage-4.6.2) on (32bit) Core Duo MacBook running OS X 10.6

2011-03-05 Thread Bill Hart
Oh dear, I misread what you wrote. You have mpir-1.2.2. This problem has been fixed since then. Jason has just released mpir 2.3.0. He writes: Apple compiler doesn't like our PIC code so we did this in configure.in , though I cant remember which version of MPIR first had it # 32bit apple

Re: [sage-devel] make testlong on 4.6.2 stuck on ecm

2011-03-05 Thread Jan Groenewald
Hi On Sat, Mar 05, 2011 at 09:54:37AM +, Dr. David Kirkby wrote: No, but I would strongly advise against building software as root. The root account should only be used when absolutely necessary, and building Sage is not one of those times. I have seen bugs where Sage can try to overwrite

Re: [sage-devel] Linear algebra reviews

2011-03-05 Thread Bill Page
I tried uploading the zip file but Sage Notebook version 4.6.1 complains that it is not an sws file. Is this unpacking of a zip file a new feature or am I doing it wrong? On Fri, Mar 4, 2011 at 7:00 PM, Rob Beezer goo...@beezer.cotse.net wrote: If you are curious how the book looks as

[sage-devel] Re: Geogebra (again)

2011-03-05 Thread Jason Grout
On 3/5/11 9:09 AM, Jacob Hicks wrote: I had two goals in mind. The first was to have the notebook able to control the applet, which I accomplished in the same way that you have. The second was to allow the notebook to read data from the applet. I wasn't able to make much progress on that

Re: [sage-devel] Linear algebra reviews

2011-03-05 Thread Bill Page
Oops, sorry I spoke too quickly. I see. Apparently nnpacking does not work from a URL, but does work if you first download the file and then upload if by choosing the file instead of just entering the URL. Thanks for making this available! On Sat, Mar 5, 2011 at 10:16 AM, Bill Page

[sage-devel] Re: Linear algebra reviews

2011-03-05 Thread Jason Grout
On 3/5/11 9:21 AM, Bill Page wrote: Oops, sorry I spoke too quickly. I see. Apparently nnpacking does not work from a URL, but does work if you first download the file and then upload if by choosing the file instead of just entering the URL. Thanks for making this available! This seems like a

Re: [sage-devel] Re: Adding support for non-gnu compilers

2011-03-05 Thread Dr. David Kirkby
On 03/ 4/11 09:09 PM, Volker Braun wrote: On Friday, March 4, 2011 4:39:09 PM UTC, Dr. David Kirkby wrote: * R will not build 64-bit on OpenSolaris with gcc * The optional OpenMPI will not build with gcc on Solaris, but will with the Sun compiler. Why not just manually override CC/CXX/FC

Re: [sage-devel] Re: Adding support for non-gnu compilers

2011-03-05 Thread Volker Braun
On Saturday, March 5, 2011 6:06:38 PM UTC, Dr. David Kirkby wrote: I specifically said NON_GNU rather than Sun or Oracle, to not make it Solaris specific. But if you compile Sage with acme compiler then a different set of spkgs will fail. So you don't gain anything from R and openmpi spkgs

Re: [sage-devel] Re: Preparsing madness...

2011-03-05 Thread Robert Bradshaw
On Sat, Mar 5, 2011 at 12:26 AM, Simon King simon.k...@uni-jena.de wrote: Hi Robert, On 4 Mrz., 22:18, Robert Bradshaw rober...@math.washington.edu wrote: ... See the PyUnicode_IsIdentifier function. ... which soon refers to two other functions (_PyUnicode_IsXidStart and

[sage-devel] Try searching for Mathematica in Google

2011-03-05 Thread Dr. David Kirkby
If you try a Google search for Mathematica, you should (I hope) be able to find a sponsored ad for Sage. Please do NOT click it, as I'm paying for every click, so would rather only people who don't know about Sage actually clicked the ad. Note the text string associated with the ad could not

[sage-devel] Re: Inverse of permutation group elements

2011-03-05 Thread Jason Grout
On 3/5/11 1:14 PM, Rob Beezer wrote: On Mar 5, 3:34 am, Volker Braunvbraun.n...@gmail.com wrote: Though it would be nice if they could be merged :-) +1, and I think that was KDC's suggestion above. For example: sage: g = PermutationGroupElement([1,3,2]) sage: g.matrix() [1 0 0] [0 0 1]

[sage-devel] Re: Try searching for Mathematica in Google

2011-03-05 Thread Jason Grout
On 3/5/11 1:19 PM, Dr. David Kirkby wrote: If you try a Google search for Mathematica, you should (I hope) be able to find a sponsored ad for Sage. Please do NOT click it, as I'm paying for every click, so would rather only people who don't know about Sage actually clicked the ad. Worked for

Re: [sage-devel] Re: Adding support for non-gnu compilers

2011-03-05 Thread Dr. David Kirkby
On 03/ 5/11 06:32 PM, Volker Braun wrote: On Saturday, March 5, 2011 6:06:38 PM UTC, Dr. David Kirkby wrote: I specifically said NON_GNU rather than Sun or Oracle, to not make it Solaris specific. But if you compile Sage with acme compiler then a different set of spkgs will fail. So you

Re: [sage-devel] Re: Try searching for Mathematica in Google

2011-03-05 Thread Timothy Clemans
I just get the Mathematica ad like Rob. On Sat, Mar 5, 2011 at 3:08 PM, Rob Beezer goo...@beezer.cotse.net wrote: I get just one ad, for Mathematica Home Edition.  Repeated searches just bring this up, with two variants on the actual text of the ad. One says $295, the other says fraction of

Re: [sage-devel] Try searching for Mathematica in Google

2011-03-05 Thread Dr. David Kirkby
On 03/ 5/11 07:31 PM, Mike Witt wrote: On 03/05/2011 11:19:35 AM, Dr. David Kirkby wrote: If you try a Google search for Mathematica, you should (I hope) be able to find a sponsored ad for Sage. Please do NOT click it, as I'm paying for every click, so would rather only people who don't know

[sage-devel] Online Theses in Number Theory

2011-03-05 Thread Dr. David Kirkby
Somehow I stumbled across this, though I was not looking for anything related to number theory http://www.numbertheory.org/ntw/N5.html I thought it might interest some. -- A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? A:

Re: [sage-devel] Re: Try searching for Mathematica in Google

2011-03-05 Thread Dr. David Kirkby
On 03/ 5/11 11:08 PM, Rob Beezer wrote: I get just one ad, for Mathematica Home Edition. Repeated searches just bring this up, with two variants on the actual text of the ad. One says $295, the other says fraction of the cost.H. I've hit the limit for the amount I'm willing to spend

[sage-devel] Re: student project for contributing to sage

2011-03-05 Thread kcrisman
Greetings, and welcome to Sage! Pynac is a friendly fork of Ginac which we use to do basic symbolics in Sage, and not really about polynomials per se; in any case one wouldn't be adding huge new pieces, as the goal is to keep it fairly close to Ginac in general. The proper place for this message

[sage-devel] Re: Linear algebra reviews

2011-03-05 Thread kcrisman
On Mar 5, 10:51 am, Jason Grout jason-s...@creativetrax.com wrote: On 3/5/11 9:21 AM, Bill Page wrote: Oops, sorry I spoke too quickly. I see. Apparently nnpacking does not work from a URL, but does work if you first download the file and then upload if by choosing the file instead of

[sage-devel] Re: Geogebra (again)

2011-03-05 Thread kcrisman
On Mar 4, 11:08 pm, Jacob Hicks jmhi...@uga.edu wrote: I started working on a project exactly like this about a year ago.  I got Geogebra to run from a local copy of the jar files after some advice from William. Extract the sagenb spkg. Under the data directory, make a geogebra directory

[sage-devel] Re: Linear algebra reviews

2011-03-05 Thread Jason Grout
On 3/5/11 7:48 PM, kcrisman wrote: On Mar 5, 10:51 am, Jason Groutjason-s...@creativetrax.com wrote: On 3/5/11 9:21 AM, Bill Page wrote: Oops, sorry I spoke too quickly. I see. Apparently nnpacking does not work from a URL, but does work if you first download the file and then upload if by

[sage-devel] Re: Linear algebra reviews

2011-03-05 Thread kcrisman
On Mar 5, 10:26 pm, Jason Grout jason-s...@creativetrax.com wrote: On 3/5/11 7:48 PM, kcrisman wrote: On Mar 5, 10:51 am, Jason Groutjason-s...@creativetrax.com  wrote: On 3/5/11 9:21 AM, Bill Page wrote: Oops, sorry I spoke too quickly. I see. Apparently nnpacking does not work

[sage-devel] 3d graphics on safari/iphone/ipad/chrome

2011-03-05 Thread Jason Grout
Here's an interesting crazy idea for yet another interactive 3d backend that would work on an iphone/ipad, I think. Notice that 3d css transforms are supported on these devices [1]. I think a person could write a 3d surface renderer that would use divs to cover and model a 3d surface (i.e.,

Re: [sage-devel] Try searching for Mathematica in Google

2011-03-05 Thread Robert Bradshaw
On Sat, Mar 5, 2011 at 11:19 AM, Dr. David Kirkby david.kir...@onetel.net wrote: If you try a Google search for Mathematica, you should (I hope) be able to find a sponsored ad for Sage. Please do NOT click it, as I'm paying for every click, so would rather only people who don't know about Sage