[sage-devel] trouble running n() on matrices

2008-04-07 Thread Dan Drake
Hello all, I'm running into problems with coercing to complexes or reals in matrices: sage: d = matrix([[3, 0],[0,sqrt(2)]]) sage: b = matrix([[1, -1], [2, 2]]) sage: e = b * d * b.inverse(); e [1/sqrt(2) + 3/2 3/4 - 1/(2*sqrt(2))] [3 - sqrt(2) 1/sqrt(2) + 3/2] and whe

[sage-devel] Re: hyperlinks for Colloquy users

2008-04-07 Thread Dan Drake
On Mon, 07 Apr 2008 at 04:47PM -0700, mhampton wrote: > > I have patchedColloquyso that text like "#1234" gets hyperlinked to > > the sage trac server. Another thing that everyone can do is set up a Firefox "Quick Search" so that you can just type something like "sagetrac 1234" in the location bar

[sage-devel] Re: hyperlinks for Colloquy users

2008-04-07 Thread mhampton
Works great for me on a ppc (G4) 10.4.11 mac. Thanks, those little things can make a quite a difference! -Marshall Hampton On Apr 4, 12:22 pm, David Harvey <[EMAIL PROTECTED]> wrote: > Hi all, > > This message is for Sage developers who use theColloquyIRC chat > client. > > I have patchedColloq

[sage-devel] Re: Sage 3.0.alpha2 released

2008-04-07 Thread John Cremona
Build report: on this machine: Linux host-57-71 2.6.18.8-0.3-default #1 SMP Tue Apr 17 08:42:35 UTC 2007 x86_64 x86_64 x86_64 GNU/Linux with gcc version 4.1.2 20061115 (prerelease) (SUSE Linux) it builds fine and testall passes except for these: sage -t devel/sage/sage/dsage/tests/test

[sage-devel] Re: Sage 3.0.alpha2 released

2008-04-07 Thread mabshoff
On Apr 7, 9:31 pm, "Justin C. Walker" <[EMAIL PROTECTED]> wrote: > On Apr 6, 2008, at 22:29 , mabshoff wrote: > > > > > Hello folks, > > > this is Sage 3.0.alpha2. Up to now we closed 111 tickets. But > > things are still of alpha quality: > > Sources and binaries are in the usual place: > > >ht

[sage-devel] Re: Sage 3.0.alpha2 released

2008-04-07 Thread Justin C. Walker
On Apr 6, 2008, at 22:29 , mabshoff wrote: > > Hello folks, > > this is Sage 3.0.alpha2. Up to now we closed 111 tickets. But > things are still of alpha quality: > Sources and binaries are in the usual place: > > http://sage.math.washington.edu/home/mabshoff/release-cycles-3.0/sage-3.0.alpha2.t

[sage-devel] Re: p-adic crash error

2008-04-07 Thread John Cremona
On 07/04/2008, David Roe <[EMAIL PROTECTED]> wrote: > > I'm back from my three week trip to the west coast and will take a look at > this. I didn't realise that p-adics were coast-sensitive! John > > David > > > On Mon, Apr 7, 2008 at 11:16 AM, Kiran Kedlaya <[EMAIL PROTECTED]> wrote: > > >

[sage-devel] Re: Sage 3.0.alpha2 released

2008-04-07 Thread David Joyner
The following tests failed: sage -t devel/sage/sage/functions/piecewise.py sage -t devel/sage/sage/dsage/tests/testdoc.py sage -t devel/sage/sage/combinat/cartan_matrix.py sage -t devel/sage/sage/matrix/action.pyx sage -t devel/sage/sage/categories/ca

[sage-devel] Re: p-adic crash error

2008-04-07 Thread David Roe
I'm back from my three week trip to the west coast and will take a look at this. David On Mon, Apr 7, 2008 at 11:16 AM, Kiran Kedlaya <[EMAIL PROTECTED]> wrote: > > Jen Balakrishnan spent time with some of the usual suspects during the > Arizona Winter School tracking down bugs in the p-adics,

[sage-devel] Re: using bitset.pxi in user programs

2008-04-07 Thread Robert Bradshaw
On Apr 7, 2008, at 10:36 AM, Jason Grout wrote: > > Robert Bradshaw wrote: >> On Apr 7, 2008, at 10:12 AM, Jason Grout wrote: >>> I love the new bitset.pxi file in sage/misc/. >> >> Thanks :). >> >>> Can I access these >>> functions from a cython file that a user writes (i.e., that is not >>> part

[sage-devel] Re: using bitset.pxi in user programs

2008-04-07 Thread Jason Grout
Robert Bradshaw wrote: > On Apr 7, 2008, at 10:12 AM, Jason Grout wrote: >> I love the new bitset.pxi file in sage/misc/. > > Thanks :). > >> Can I access these >> functions from a cython file that a user writes (i.e., that is not >> part >> of the sage source)? > > Yes. I think one would hav

[sage-devel] Re: class variables in cython classes

2008-04-07 Thread Jason Grout
Robert Bradshaw wrote: > On Apr 7, 2008, at 10:07 AM, Jason Grout wrote: >> In trying to unify the linear algebra syntax, I came across the >> following behavior: >> >> >> sage: a=matrix(2,range(4)) >> sage: a.nrows() >> 2 >> sage: a._nrows >> --

[sage-devel] Re: using bitset.pxi in user programs

2008-04-07 Thread Robert Bradshaw
On Apr 7, 2008, at 10:12 AM, Jason Grout wrote: > > I love the new bitset.pxi file in sage/misc/. Thanks :). > Can I access these > functions from a cython file that a user writes (i.e., that is not > part > of the sage source)? Yes. I think one would have to copy and/or include the file (giv

[sage-devel] Re: class variables in cython classes

2008-04-07 Thread Robert Bradshaw
On Apr 7, 2008, at 10:07 AM, Jason Grout wrote: > > In trying to unify the linear algebra syntax, I came across the > following behavior: > > > sage: a=matrix(2,range(4)) > sage: a.nrows() > 2 > sage: a._nrows > -- > - >

[sage-devel] using bitset.pxi in user programs

2008-04-07 Thread Jason Grout
I love the new bitset.pxi file in sage/misc/. Can I access these functions from a cython file that a user writes (i.e., that is not part of the sage source)? Thanks, Jason --~--~-~--~~~---~--~~ To post to this group, send email to sage-devel@googlegroups.com

[sage-devel] class variables in cython classes

2008-04-07 Thread Jason Grout
In trying to unify the linear algebra syntax, I came across the following behavior: sage: a=matrix(2,range(4)) sage: a.nrows() 2 sage: a._nrows --- Traceback (most recent call last) /home/grout/sage/devel/sage-main

[sage-devel] Re: Sage 3.0.alpha2 released

2008-04-07 Thread David Joyner
Installed fine on ubuntu 7.10 amd64. My machine hangs randomly (and non-reproducibly) during a sage -testall, apparently only when it encounters maxima. I have to ctl-c and restart. However, so far I did get this: sage -t devel/sage/sage/functions/piecewise.py ***

[sage-devel] Re: Sage 3.0.alpha2 released

2008-04-07 Thread mabshoff
On Apr 7, 5:13 pm, Jaap Spies <[EMAIL PROTECTED]> wrote: > mabshoff wrote: > > Hello folks, > > > this is Sage 3.0.alpha2. Up to now we closed 111 tickets. But > > things are still of alpha quality: Hi Jaap, > On Fedora 7, 32 bits: > > sage -t  devel/sage/sage/coding/sd_codes.py              

[sage-devel] p-adic crash error

2008-04-07 Thread Kiran Kedlaya
Jen Balakrishnan spent time with some of the usual suspects during the Arizona Winter School tracking down bugs in the p-adics, but more remain. We've isolated a code snippet that makes sage 2.11 go boom on multiple platforms: {{{ sage: R. = QQ[] sage: K = Qp(11,10) sage: J. = K.extension(x^30-11)

[sage-devel] Re: Sage 3.0.alpha2 released

2008-04-07 Thread Jaap Spies
mabshoff wrote: > Hello folks, > > this is Sage 3.0.alpha2. Up to now we closed 111 tickets. But > things are still of alpha quality: > On Fedora 7, 32 bits: sage -t devel/sage/sage/coding/sd_codes.py sh: line 1: 10820 Aborted /home/jaap/downloads/sage-3.0.alp

[sage-devel] Re: [sage-support] PDE and Finite Element methods

2008-04-07 Thread Ondrej Certik
On Mon, Apr 7, 2008 at 3:12 PM, David Joyner <[EMAIL PROTECTED]> wrote: > > Hector told me (in a separate email) about DOLFIN > http://www.fenics.org/wiki/FEniCS_Project > which is built on numpy. Although I had trouble installing it, > I'm wondering if anyone else on this list has been able t

[sage-devel] Re: [sage-support] PDE and Finite Element methods

2008-04-07 Thread David Joyner
Hector told me (in a separate email) about DOLFIN http://www.fenics.org/wiki/FEniCS_Project which is built on numpy. Although I had trouble installing it, I'm wondering if anyone else on this list has been able to try it out? Cross-posting to sage-devel. On Wed, Apr 2, 2008 at 7:19 PM, Hector Vi

[sage-devel] Re: trac is down....

2008-04-07 Thread mabshoff
On Apr 7, 2:25 pm, David Harvey <[EMAIL PROTECTED]> wrote: > david Yeah, ran out of disc space. It is fixed now, but only a question of time until it will happen again. Cheers, Michael --~--~-~--~~~---~--~~ To post to this group, send email to sage-devel@google

[sage-devel] trac is down....

2008-04-07 Thread David Harvey
david --~--~-~--~~~---~--~~ To post to this group, send email to sage-devel@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-devel URLs: http://www.sagemath.o

[sage-devel] Re: can't handle symmetric functions > 15?

2008-04-07 Thread Mike Hansen
Hello, I figured out the problem and posted a patch at http://trac.sagemath.org/sage_trac/ticket/2839 . It was a very silly mistake that I should have caught the last time; I've included doctests for the issue this time. I've also included a change which speeds up the change of basis for the c