[sage-devel] axiom4sage-0.3 and patch to axiom.py

2007-08-12 Thread Bill Page
due to the change in Lisp compiler. I would be very interested in any comments or problems people have using this version. Please consider it still experimental. Regards, Bill Page. --- diff -r c9e32102af60 sage/interfaces/axiom.py --- a/sage/interfaces/axiom.py Thu Aug 02 20:02:18 2007 -0700

[sage-devel] Re: New Axiom package

2007-08-14 Thread Bill Page
n n (n + 2) sage: f.type() Expression Integer sage: f.eval(axiom('n=5')) 84035 sage: f.eval(axiom('n=6')) 1572864 sage: Regards, Bill Page. --~--~-~--~~~---~--~~ To post to this group, send email to sage-devel@googlegroups.com To unsubs

[sage-devel] Re: New Axiom package

2007-08-14 Thread Bill Page
+ 2) > > sage: f.type() > Expression Integer > > sage: f.eval(axiom('n=5')) > 84035 > > sage: f.eval(axiom('n=6')) > 1572864 > > sage: Regards, Bill Page. --~--~-~--~~~---~--~~ To post to this group, send ema

[sage-devel] Re: New Axiom package

2007-08-14 Thread Bill Page
1 or the following patch: http://sage.math.washington.edu/home/page/axiom.py-0.3.patch (Not required just to run 'sage -axiom'.) On 8/13/07, William Stein <[EMAIL PROTECTED]> wrote: > Thanks. I've applied this for sage-2.8.1. > > On 8/13/07, Bill Page <[EMAIL PROTE

[sage-devel] Re: New Axiom package

2007-08-15 Thread Bill Page
Clisp in Sage without readline support? Regards, Bill Page. Test results: Using my original script copy - r=[0,3,32,375,5184,84035] R=axiom(r).guessExpRat(); R f=axiom('%s.1.function'%R.name()); f f.type() f.eval(axiom('n=5')) f.eval(axiom('n=6')) paste ---

[sage-devel] Re: New Axiom package

2007-08-15 Thread Bill Page
On 8/15/07, Bill Page I wrote: > ... > How much objection would there be to building Clisp in Sage without > readline support? > ... Alternatively assuming no dynamic method of disabling readline for Clisp is found, I guess I could use the clisp*.spkg source to build a local c

[sage-devel] Re: [fricas-devel] Re: [sage-devel] Re: New Axiom package

2007-08-15 Thread Bill Page
that seem to fail due to the communication between Maxima and Sage? Regards. Bill Page. --~--~-~--~~~---~--~~ 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 thi

[sage-devel] Re: [fricas-devel] Re: [sage-devel] Re: New Axiom package

2007-08-15 Thread Bill Page
adline disabled. Maybe it is a bug in pexpect. But as you implied, these problems seem to be exceeding difficult to debug. It is easier to work around them. I think that to really do this right we need better syntactical markup in the Axiom output like is possible in Maxima. Regards, B

[sage-devel] Re: New Axiom package

2007-08-15 Thread Bill Page
ath.washington.edu/home/page/axiom.py-0.3.patch One the MAC OSX system that I am using for test, this change cures the problems that you reported. The excuse for this funny construction: sh -c 'cat|axiom -nox -noclef' is that it causes Clisp to disable readline. Please let me

[sage-devel] Re: New Axiom package

2007-08-15 Thread Bill Page
the change you said manually and both your example and > mine work now. Excellent. > Thanks! Now off to play with GUESS on some neat polynomials... You are welcome. Have fun. I am sure that Martin Rubey would be happy to discuss the program with you if you have any questions

[sage-devel] Re: Axiom / guess / sage

2007-08-15 Thread Bill Page
of the other packages in Axiom. > Also: > sage: axiom.help('guess') > AXIOM shell variable has no value. using current directory > unable to find the file compress.daase > Help system not available. > > but that s on your todo list, right? > Yes it is. Axiom has se

[sage-devel] Fwd: [open-axiom-announce] Introducing OpenAxiom

2007-08-16 Thread Bill Page
Axiom" projects are similar and different from the original Axiom project. I guess time and energy will determine which of these projects thrive. Regards, Bill Page. -- Forwarded message -- From: Gabriel Dos Reis <[EMAIL PROTECTED]> Date: 16 Aug 2007 15:10:30 -0500 Subj

[sage-devel] Re: sagelite

2007-08-20 Thread Bill Page
ite might be a very good way to make a positive first impression on an entirely new class of potential Sage users. Regards, Bill Page. --~--~-~--~~~---~--~~ To post to this group, send email to sage-devel@googlegroups.com To unsubscribe from this group, send email

[sage-devel] Re: [fricas-devel] Re: [sage-devel] Re: New Axiom package

2007-08-30 Thread Bill Page
('1+1') To get the Axiom type of the result you might write: sage: p=axiom('1+1');p sage: p.type() > > > > I have somwhat strage terminal setup (I sit at a Linux console from > > > which I ssh to another machine running screen from where I ssh to > &g

[sage-devel] Aldor source code release!

2007-09-01 Thread Bill Page
tree do: svn co http://aquarium.aldor.csd.uwo.ca/svn/trunk ---- Regards, Bill Page. --~--~-~--~~~---~--~~ 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,

[sage-devel] Re: calculus in SAGE/SymPy

2007-09-12 Thread Bill Page
t Axiom and to discuss these ideas. And I think that it is a good thing that the subject comes up again here in Sage since Sage does make some effort to implement other formal (algebraic) mathematical structures in a rigorous manner. Regards, Bill Page. --~--~-~--~~~

[sage-devel] Re: making new infix operators

2007-09-27 Thread Bill Page
wgraph2=A.union(B).union(C).union(D).union(E) a new copy of A is created and modified before it is assigned to 'newgraph2'. However we do not have to be aware of this as such. The only thing we need to remember is that there can be no side-effects. Regards, Bill Page. --~--~-

[sage-devel] Re: SAGE conventions for methods

2007-09-27 Thread Bill Page
sonally I don't like this very much and would prefer a solution that did not mangle names for the sake of readability. Regards, Bill Page. --~--~-~--~~~---~--~~ To post to this group, send email to sage-devel@googlegroups.com To unsubscribe from this group, send e

[sage-devel] Re: making new infix operators

2007-09-27 Thread Bill Page
;7,8' is inserted into the *same* object. But if I write: sage: a=[1,2] sage: sys.getrefcount(a) 2 sage: a.__add__([3,5]).__add__([7,8]) [1, 2, 3, 5, 7, 8] then it is no longer safe to simply insert '3,5' into the object denoted by '[1,2]' since that will affect the value

[sage-devel] Re: making new infix operators

2007-09-27 Thread Bill Page
http://docs.python.org/ext/refcountsInPython.html - Nobody ``owns'' an object; however, you can own a reference to an object. An object's reference count is now defined as the number of owned references to it. The owner of a reference is responsible for calling Py_DECREF() when

[sage-devel] Re: making new infix operators

2007-09-28 Thread Bill Page
place operations. But with the proper care, it's a perfectly valid > approach for optimizing expressions involving immutable objects. > Given Bill's surprise, it probably wasn't totally useless to provide > these examples :) > Very useful indeed, thanks! :-) Regards, Bill Pag

[sage-devel] Re: andlinux

2007-10-12 Thread Bill Page
interested in other reactions and comments. Regards, Bill Page. On 10/12/07, William Stein <[EMAIL PROTECTED]> wrote: > > Hi, > > Does anybody want to try to make sage run on Windows via this: > >http://www.andlinux.org/ > > Bill Page just pointed out that they&

[sage-devel] Re: andlinux

2007-10-12 Thread Bill Page
On 10/12/07, William Stein wrote: > > On 10/12/07, Bill Page wrote: > > > > William, > > > > I am building Sage from source under andLinux right now. Everything > > looks good so far. I will report when it completes. It is also > > possible that an

[sage-devel] Re: andlinux

2007-10-12 Thread Bill Page
On 10/12/07, William Stein wrote: > > On 10/12/07, Bill Page <[EMAIL PROTECTED]> wrote: > > > > William, > > > > I am building Sage from source under andLinux right now. Everything > > looks good so far. I will report when it completes. It is also > &

[sage-devel] Re: andlinux

2007-10-13 Thread Bill Page
On 10/13/07, Jaap Spies wrote: > ... > > On 10/12/07, William Stein <[EMAIL PROTECTED]> wrote: > >> Hi, > >> > >> Does anybody want to try to make sage run on Windows via this: > >> > >>http://www.andlinux.org/ > >> > >

[sage-devel] Re: andlinux

2007-10-13 Thread Bill Page
quoted string? E.g. maxima('1+1') Does that work or do you get the in that case too? What about if you type " instead of ' ? Like this: install_scripts("/usr/local/bin") Are you using any special (non-US) keyboard configuration? Regards, Bill Page. --~-

[sage-devel] Re: andlinux

2007-10-19 Thread Bill Page
On 10/13/07, William Stein <[EMAIL PROTECTED]> wrote: > > On 10/12/07, Bill Page <[EMAIL PROTECTED]> wrote: > > > Excellent! So you and me could work together on Sage-via-andLinux. > > > Sounds good to me. > > > > > > > The build of

[sage-devel] Re: sloccount of sage-2.8.9.rc1

2007-10-25 Thread Bill Page
I was a little surprised by the number lisp:340210 (6.96%) For example, does the Lisp entry in mercurial-0.9.5 python=27386,sh=8300,tcl=3484,lisp=1411,ansic=1364 make sense? As far as I know mercurial does not use any Lisp, or does it? Regards, Bill Page. On 10/24/07, William

[sage-devel] Axiom Wiki and Portal are moving

2007-10-31 Thread Bill Page
de on the wiki pages again. My intention is to use the newest version of FriCAS and the new open source release of Aldor. Some things have changed since I did this last, so it may take a little more time but this should be completed in the new few days. And as

[sage-devel] Re: [Axiom-mail] Axiom Wiki and Portal are moving

2007-11-01 Thread Bill Page
On 01 Nov 2007 12:54:00 -0500, Gabriel Dos Reis wrote: > "Bill Page" <[EMAIL PROTECTED]> writes: > > | new sites now. They can be found at: > | > | http://axiom-wiki.newsynthesis.org > | > | and > | > | http://axiom-portal.newsynthesis.o

[sage-devel] Re: [fricas-devel] Re: Axiom Wiki and Portal are moving

2007-11-02 Thread Bill Page
On 11/1/07, Waldek Hebisch wrote: > > Bill Page wrote: > ... > > new sites now. They can be found at: > > > > http://axiom-wiki.newsynthesis.org > > > > and > > > > http://axiom-portal.newsynthesis.org > > > ... > Bill, I m

[sage-devel] Axiom interface revisions and patches

2006-10-11 Thread Bill Page
out how to properly use the "bundle" patch method? What is the advantage of using bundle? Is there a trick to view their contents? Regards, Bill Page. --~--~-~--~~~---~--~~ To post to this group, send email to sage-devel@googlegroups.com To unsubscribe f

[sage-devel] RE: Conference

2006-10-12 Thread Bill Page
means of making Sage (and other computer algebra software) more accessible to less experienced users. So in the end I did not distribute any copies of the CD. But perhaps that is a good thing since we should soon have the new version of the CD which includes Sage support in the Doyen wiki. Right? :-)

[sage-devel] RE: [Axiom-developer] RE: Conference

2006-10-14 Thread Bill Page
On October 13, 2006 6:34 PM Gaby wrote: > > Bill Page writes: > > | > | On October 12, 2006 11:57 AM Alfredo wrote > | > > | > Hi Bill, > | > > | > Wondering if you are back from Sage Days, and how did it go? > | > | Yes, I am back. I would say t

[sage-devel] RE: [Axiom-developer] RE: Conference

2006-10-14 Thread Bill Page
to do > with its age than some "management" choices that I believe don't > push Axiom to more exposure. We've already debated those, so I'm > not going to elaborate here. I just hope that as we work toward > making the system more accessible, we would attract mo

[sage-devel] RE: sage -upgrage on axiom-developer.org fails

2006-10-20 Thread Bill Page
e closely integrated with the Sage parent/type system. Regards, Bill Page. --~--~-~--~~~---~--~~ 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, visi

[sage-devel] RE: sage -upgrage on axiom-developer.org fails

2006-10-20 Thread Bill Page
On October 20, 2006 4:48 PM William Stein wrote: > > On Fri, 20 Oct 2006 08:11:23 -0700, Bill Page > > ... > > : name 'axiom' is not defined > > > > OK, that's really really weird. If you want to definitely > get a "clean slate", d

[sage-devel] axiom4sage-0.1.spkg axiom as a Sage package

2006-10-27 Thread Bill Page
ery much appreciate reports of success or failure of installations on other systems. Regards, Bill Page. http://wiki.axiom-developer.org --~--~-~--~~~---~--~~ To post to this group, send email to sage-devel@googlegroups.com To unsubscribe from this group, send

[sage-devel] Re: Polynomials again

2006-10-27 Thread Bill Page
k designing a sensible system of automatic coercions is a difficult (and largely unsolved problem) in programming language design. Ad hoc inventions of such coercions can sometimes lead to quite unexpected behavior and again violate the prinicple of least surprise... We certainly also see that in the A

[sage-devel] Re: lisp.run REALLY ANNOYING

2006-10-31 Thread Bill Page
On October 31, 2006 11:09 AM William Stein wrote: > > Maxima is a clisp program. Bobby was working on fixing a bug > (rather -- making a workaround) in their latex typesetting engine > that Bill Page pointed out at SAGE Days, so he was restarting > SAGE and running maxima hundre

[sage-devel] Re: QQ['x,y,z']

2006-10-31 Thread Bill Page
of the type I described above. > The analogous, consistent behavior to the polynomial ring > namespace injection would be: > > sage: symbolic("x,y,z") #no return (necessary) > sage. f = cos(x)*sin(y) > sage: integral(f,z) ... > > which makes me feel uneasy

[sage-devel] Re: QQ['x,y,z']

2006-11-01 Thread Bill Page
On Tuesday, October 31, 2006 12:29 PM Martin Albrecht wrote: > ... > Bill Page wrote: > > I strongly support Martin's view on this. > > I'm confused: If I understand your suggestion above correctly you > want every undefined name to be a variable, so e.g. >

[sage-devel] Re: sage arithmetic

2006-11-03 Thread Bill Page
([y],INT), Axiom constructs the result as a polynomial in x over the ring of polynomials in y. Is that crazy or is that just being rigourously correct? ;) Perhaps Axiom's result is more "minimal" then what you proposed. But the result w shows that it is possible to specify a coercion t

[sage-devel] Re: sage arithmetic

2006-11-03 Thread Bill Page
On November 3, 2006 9:48 AM David Harvey wrote: > > On Nov 3, 2006, at 9:37 AM, Bill Page wrote: > > > > > Maybe it is interesting to consider how Axiom handles these > > coercions? For example: > > > > sage: x = axiom('x::MPOLY([x],INT)')

[sage-devel] Re: REDUCE under SAGE

2006-11-03 Thread Bill Page
ge-devel is interested in doing a SAGE > <--> REDUCE interface, let me know.) > Yes, I am interested. But of course I also have only limited time. I did a simple interface for Reduce on the Axiom Wiki a couple of years ago. Regards, Bill Page. --~--~-~--~~~-

[sage-devel] RE: [Axiom-math] PAFF package question

2006-11-05 Thread Bill Page
that are not available (at least in principle) in Sage. Perhaps I good first step might be to add the PAFF code to the Axiom library that is built as part of axiom4sage-0.1.spkg so that these routines could be called via Axiom inside sage. Regards, Bill Page. >... > > On 11/5/06,

[sage-devel] Re: ideas involving sage+maple?

2009-05-07 Thread Bill Page
arge of R+D, whose name > I have forgotten. Is there any objection to trying to pursue this angle? (I > have no idea how fruitful it will be, but IMHO it can't hurt to ask.) > I agree. Why not? I used to use Maple a lot. Now I just as often use Maple from within the

[sage-devel] Re: [sage-support] Re: cube roots

2009-05-14 Thread Bill Page
On Thu, May 14, 2009 at 12:34 PM, Jason Grout wrote: >> Bill Page wrote: >> Ok thanks. I recall the discussion and I can indeed write: >> >> sage: f=lambda x:RR(x).nth_root(3) >> sage: f(-2.0) >> -1.25992104989487 >> >> but I think I'll let m

[sage-devel] Re: 2d math input

2009-05-22 Thread Bill Page
of purpose. Apparently MathDox itself http://www.mathdox.org already has some support for Mathematica, Maxima and GAP. Regards, Bill Page. On Fri, May 22, 2009 at 1:52 PM, Serge A. Salamanka wrote: > > It will be great to enable Sage with 2D input. > > Any ideas how to do this

[sage-devel] Re: 2d math input

2009-05-22 Thread Bill Page
Where can I find and/or test "jsmath equation editor"? How difficult might it be to convert the output of this editor to input to Sage? 2009/5/22 William Stein : > > 2009/5/22 Bill Page : >> >> It might be a stretch to fit this into the Sage NoteBook but t

[sage-devel] Re: 2d math input

2009-05-22 Thread Bill Page
On Fri, May 22, 2009 at 5:01 PM, Jason Grout wrote: > > Bill Page wrote: >> Where can I find and/or test "jsmath equation editor"? > > I guess it's a little confusing to call it that, since mathdox > apparently uses jsmath too. Yes. > What we are referri

[sage-devel] Re: Categories for the working programmer

2009-05-24 Thread Bill Page
one does a little more work then elements > can be objects in a category.  That sounds reasonable to me. > But none of this has much to do with category theory as such where normally elements of some co-domain are *morphisms* with the domain some terminal object in the category. Regards, Bi

[sage-devel] Re: LU decomposition

2009-06-05 Thread Bill Page
Jason, Perhaps this Axiom code might be of some use? The generic coding style is rather similar to the way Python is used in Sage. http://axiom-wiki.newsynthesis.org/JetLUDecomposition Regards, Bill Page. On Thu, Jun 4, 2009 at 5:46 PM, Jason Grout wrote: > > If I were to attempt to

[sage-devel] Re: [fricas-devel] Re: fricas and ECL

2009-06-17 Thread Bill Page
On Wed, Jun 17, 2009 at 9:09 PM, Waldek Hebisch wrote: > maxthemouse wrote: > ... >> What was not clear to me was where I should send a mail/patch >> for this. i.e. Who is charge of the fricas.spkg? >> > > The packages were created by Bill Page.  He also uploaded

[sage-devel] Fwd: fricas and ECL

2009-06-18 Thread Bill Page
-- Forwarded message -- From: maxthemouse Date: Thu, Jun 18, 2009 at 7:10 AM Subject: Re: fricas and ECL To: Bill Page On Jun 18, 4:45 am, Bill Page wrote: > On Wed, Jun 17, 2009 at 9:09 PM, Waldek Hebisch wrote: > > maxthemouse wrote: > > ... > >>

[sage-devel] Fwd: fricas and ECL

2009-06-18 Thread Bill Page
-- Forwarded message -- From: maxthemouse Date: Thu, Jun 18, 2009 at 7:26 AM Subject: Re: fricas and ECL To: Bill Page Sorry, I think I sent you the wrong version. That was the before the reply from Waldek Hebisch. The following should be correct. #!/bin/sh check_error

[sage-devel] Fwd: fricas-1.0.6.p0.spkg

2009-06-19 Thread Bill Page
-- Forwarded message -- From: Adam Webb Date: Fri, Jun 19, 2009 at 5:55 AM Subject: fricas-1.0.6.p0.spkg To: bill.p...@newsynthesis.org Hi Bill, I threw together a Sage package. (fricas-1.0.6.p0.spkg, http://www.mediafire.com/file/whwmdzfimg2) The big change is that the new ve

[sage-devel] Fwd: patch for fricas.py

2009-06-19 Thread Bill Page
s sub-system in Sage. Regards, Bill Page. -- Forwarded message -- From: Adam Webb Date: Fri, Jun 19, 2009 at 9:58 AM Subject: patch for fricas.py To: Bill Page Bill, I made two changes to fricas.py to make the tests pass. The first is sage: a = fricas(x+2) to sage:a = fricas('

[sage-devel] Re: Is new symbolic derivative really worth the efforts?

2009-07-22 Thread Bill Page
ely unevaluated: sage: function('f') f sage: h = f(x^2).diff(x)*(x+1/x) sage: h (x + 1/x)*diff(f(x^2), x, 1) Notwithstanding the limitations in how Sage handles functions, this does not seem quite as satisfactory. My conclusion: -1 No, for reverting to this old behaviour. Instead I think

[sage-devel] Re: Is new symbolic derivative really worth the efforts?

2009-07-22 Thread Bill Page
On Wed, Jul 22, 2009 at 8:52 PM, Golam Mortuza Hossain wrote: > > Hi, > > On Wed, Jul 22, 2009 at 11:49 PM, Bill Page wrote: > >>> - >>> h = f(x^2).diff(x)*(x+1/x) >>> >>> sage: h.subs(f(x^2)==1) >>> 2*(x + 1/x)*x*D[0](f)(x^2) &

[sage-devel] Re: units

2009-08-12 Thread Bill Page
from scratch when > there is already so much algebra to use? +1 Regards, Bill Page. --~--~-~--~~~---~--~~ 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.c

[sage-devel] Re: barriers to community growth

2009-08-12 Thread Bill Page
; +1 Unlike vmware my experience with VirtualBox is very positive on Windows Vista, Debian and SuSE linux systems. Regards, Bill Page. --~--~-~--~~~---~--~~ To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, se

[sage-devel] Re: Explicit variable of integration

2009-08-18 Thread Bill Page
a 'Symbol' and a 'Segment'. The 'segment' operator is rather like 'range' in Python except it can form symbolic expressions. A 'SegmentBinding' is rather like '(x,a,b)' except not quite so raw. So normal

[sage-devel] converting sage expressions to fricas

2009-08-26 Thread Bill Page
This used to work. Is it a known problem? The traceback does not make much sense to me. I guess a lot has changed in this code since sage-3.4 I would appreciate any help/suggestions for debugging. Thanks. wsp...@debian:~/sage-4.1.1$ ./sage --

[sage-devel] Re: converting sage expressions to fricas

2009-08-27 Thread Bill Page
s 1.0.7 ( > http://trac.sagemath.org/sage_trac/ticket/6517 > ) with the included ecl (also works with the updated ecl that is > coming). It would be great if someone could review these two > tickets. > Thanks! I will install and look at both of these ASAP. Regards, Bill Page. --~--

[sage-devel] Re: converting sage expressions to fricas

2009-08-27 Thread Bill Page
On Thu, Aug 27, 2009 at 10:29 AM, Martin Rubey wrote: > > Bill Page writes: > >> On Thu, Aug 27, 2009 at 8:34 AM, MaxTheMouse wrote: >>> >>> This is a known problem. The patch at >>> http://trac.sagemath.org/sage_trac/ticket/6318 >>> should fix

[sage-devel] Re: converting sage expressions to fricas

2009-08-27 Thread Bill Page
On Thu, Aug 27, 2009 at 1:55 PM, Martin Rubey wrote: > > Bill Page writes: > >> What version of Sage are you using? What patches applied >> (if any)? > > 4.0.2, combinat branch, patches 6318 applied. > Ok, thanks. I am currently testing with Sage 4.1.1. Without patc

[sage-devel] Re: converting sage expressions to fricas

2009-08-28 Thread Bill Page
Bill Page wrote: >> So this patch really does depend on installing a later version of >> FriCAS than what is available at the Sage web site. >> On Fri, Aug 28, 2009 at 6:10 AM, MaxTheMouse wrote: > The patch at 6318 was changed for how the newer version of fricas > beha

[sage-devel] Re: converted sage vmware image to run on virtualbox

2009-08-28 Thread Bill Page
the command line and type sage: notebook() and enter the admin password (twice). Hit control-C. and exit 3) Now enter 'notebook' to start Sage notebook 4) Start browser with url shown. Regards, Bill Page. On Fri, Aug 28, 2009 at 3:01 PM, Yoav Aner wrote: > > Don't know if an

[sage-devel] Re: [fricas-devel] Re: Aldor interface

2009-09-02 Thread Bill Page
fricas-1.0.7.p0/build-dir/src' make: *** [all-src] Error 2 *** Failed to make FriCAS. *** wsp...@debian:~/sage-4.1.1/spkg/build/fricas-1.0.7.p0$ Regards, Bill Page. On Mon, Aug 31, 2009 at 11:01 AM, Ralf Hemmecke wrote: > >> I am

[sage-devel] Re: [fricas-devel] Re: Aldor interface

2009-09-03 Thread Bill Page
d lisp files generated by Aldor the same way as those generated by FriCAS? I don't see how that would violate any licenses. Please let me know if you would still like me to produce and send the log. Regards, Bill Page. On Thu, Sep 3, 2009 at 6:16 AM, Ralf Hemmecke wrote: > >  >

[sage-devel] Re: [fricas-devel] Re: Aldor interface

2009-09-03 Thread Bill Page
Ralf, On Thu, Sep 3, 2009 at 5:32 PM, Ralf Hemmecke wrote: > > On 09/03/2009 02:48 PM, Bill Page wrote: >> I am sorry, I don't the logs to send but if you have any problems with >> the instructions below, then I can reproduce and send them later. >> >> Assum

[sage-devel] Re: [fricas-devel] Re: Aldor interface

2009-09-04 Thread Bill Page
3) Runtime (and perhaps also libaxiom.al) from 2) contain code under the >    Aldor Public license 2.0. So I would suggest to make two packages. >    A) FriCAS (which explicitly does not build the Aldor interface). >      (mBSD-licenced) >    B) libaxiom.al plus code to create the

[sage-devel] Re: new jmol

2009-09-24 Thread Bill Page
Jason, What are the Sage version prerequisites for this package (if any)? Besides new features is there a list of bug fixes? In particular, do you know if this version solves the problem with jmol on some Windows XP systems that has been mentioned occasionally here on this list? Regards, Bill

[sage-devel] Re: new jmol

2009-09-25 Thread Bill Page
round color, axes and other options and I do see these displayed but no graphic! This same page on the same server when viewed from the other clients works fine. Regards, Bill Page. --~--~-~--~~~---~--~~ To post to this group, send an email to sage-devel@googlegroups.co

[sage-devel] Re: new jmol

2009-09-25 Thread Bill Page
On Fri, Sep 25, 2009 at 2:35 PM, Alfredo Portes wrote: > > On Fri, Sep 25, 2009 at 1:14 PM, Bill Page wrote: > >> Unfortunately there is no change in behavior with this update. It >> still works fine for me on my Linux clients and when using Windows >> Vista, but

[sage-devel] Re: new jmol

2009-09-28 Thread Bill Page
related - the laptop on which this fails does not have much memory. (1 Gbyte. ) Perhaps the default allocation on this system is not enough. Is there some way to configure the JRE on Windows to make more memory available? Regards, Bill Page. --~--~-~--~~~---~--~~ To post to

[sage-devel] Re: standalone sage notebook

2009-09-29 Thread Bill Page
I'd like to propose a new item in the File ... drop-down box. One thing that has always bugged me is having to Rename a worksheet before clicking Save. I have also seen it stump a few first time users of the Notebook. How about a Save As ... option that prompts you with a pop-up for a na

[sage-devel] Re: standalone sage notebook

2009-09-30 Thread Bill Page
On Wed, Sep 30, 2009 at 12:32 AM, William Stein wrote: > > On Tue, Sep 29, 2009 at 12:30 PM, Bill Page wrote: >> >> I'd like to propose a new item in the >> >>  File ... >> >> drop-down box.  One thing that has always bugged me is having to >>

[sage-devel] Sage and Google Wave

2009-09-30 Thread Bill Page
http://wave.google.com Is anyone thinking/doing anything about integrating Sage with Google Wave. Wave is a new collaboration environment that emphasizes real-time collaboration, richly formatted documents and emails. In my ideal "math" environment (next generation Sage Notebook?) I would like it

[sage-devel] notebook in 4.1.2

2009-10-16 Thread Bill Page
compiled 4.1.2 from source. The first thing I noticed in the notebook is that it seems to leave a trail of "Active Worksheets" tabs behind as I open and then Save and Quit each notebook. Why does it do that? Regards, Bill page. --~--~-~--~~~---~--~~ To po

[sage-devel] Re: notebook in 4.1.2

2009-10-16 Thread Bill Page
sure I did occasionally use the back button. What is one supposed to do with all the old "Active Worksheets" tabs? How do I even know which one is the "current" one? At this point it seems awfully confusing to me. :-( On Fri, Oct 16, 2009 at 10:34 PM, William Stein wrote: > > O

[sage-devel] Re: Sage in VirtualBox

2009-10-19 Thread Bill Page
William, Did you include the readme ? I don't see it after extraction. Regards, Bill Page. On Mon, Oct 19, 2009 at 2:32 PM, William Stein wrote: > > Hello, > > Despite sage_vmware-*.zip being bar far the most popular Sage > download, we will not be distributing Sage as a

[sage-devel] Re: Sage in VirtualBox

2009-10-19 Thread Bill Page
rtual machine under Windows. Of course you can ignore all that and just access Sage notebook by a local ip address from your windows desktop. Nice. I'll play some more, but right now I like it. It's reasonably fast even on a Windows XP machine with limited ram ( 1 Gbyte). Thanks Bil

[sage-devel] Re: Sage in VirtualBox

2009-10-19 Thread Bill Page
sage into a writable area so I could install optional packages like fricas-aldor. BTW, why are there two ethernet interfaces defined? Finally: Well done! Thank you for your work on this. Regards, Bill Page. --~--~-~--~~~---~--~~ To post to this group, se

[sage-devel] Re: Sage in VirtualBox

2009-10-19 Thread Bill Page
William, On Mon, Oct 19, 2009 at 7:54 PM, you wrote: > Bill Page wrote: >> I think it is also useful to increase video memory to the minimum 7 >> Mb. required for seamless mode. I tried this since I usually prefer to >> run in this mode where the linux system seems to shar

[sage-devel] Re: Sage in VirtualBox

2009-10-19 Thread Bill Page
under Windows + VirtualBox > though, for which there are already oodles and oodles of existing options? > No, that's not very interesting unless for some reason you have no alternative. If you need windows then I think it is better to

[sage-devel] Re: Sage in VirtualBox

2009-10-20 Thread Bill Page
William, Yes that works and it's pretty cool. E.g. '/mnt/sdc1' is the disk I added and '/mnt/sagerw' is the union of the read-only compressed /sage file system and my writeable disk, making the whole thing writeable: # mkdir /mnt/sagerw # mount -t aufs -o br:/mnt/sdc1=rw:/sage=ro unionfs /mnt/sa

[sage-devel] Re: Sage in VirtualBox

2009-10-20 Thread Bill Page
It seems that for some reason this puppy is not using either '/etc/udev/rules.d/70-persistent-net.rules' nor the older '/etc/iftab' method to ensure that eth0 and eth1 refer to the same interfaces across re-boots. Unless something specific is done Linux does not guarantee how ethernet adapters ar

[sage-devel] target="_blank" when opening worksheet

2009-10-21 Thread Bill Page
In case anyone is interested, here is a quick patch to get rid of that annoying behavior of the notebook that creates a new Active Worksheets tab every time I close a worksheet. Warning: William said that this behaviour is intended to avoid "massive corruption" but it is not clear to me how openi

[sage-devel] Re: target="_blank" when opening worksheet

2009-10-21 Thread Bill Page
ngton.edu/home/wstein/patches/sagenb/sagenb-0.3.5.spkg $ ./sage -f sagenb-0.3.5.spkg sufficient? > > And Bill, thanks -- welcome to being a notebook developer!! > Well I have to admit the I am becoming kind of dependent on it - necessity being my mo

[sage-devel] incorrect positioning of 3d axes

2009-10-22 Thread Bill Page
expect the origin to be. The origin appears to be displaced a little along the Y-axes. Both the X and Y axes appear to extend beyond the box. Not too serious but is this a known problem? Regards, Bill Page. --~--~-~--~~~---~--~~ To post to this group, send an email to

[sage-devel] Re: backwards compatibility of sage 4.1.2 format

2009-10-22 Thread Bill Page
then ok. Have you seen anything like this? Would you like me to try harder to produce a fully reproducible example? Regards, Bill Page. On Thu, Oct 22, 2009 at 12:03 PM, William Stein wrote: > > I expect you *will* find glitches, since this code hasn't been thoroughly > tested,

[sage-devel] Re: backwards compatibility of sage 4.1.2 format

2009-10-22 Thread Bill Page
rface software. Anyway, as I said the overall experience is much better, more reliable. I would say that it is definitely ready for beta testing. Regards, Bill Page. --~--~-~--~~~---~--~~ To post to this group, send an email to sage-devel@googlegroups.com To unsu

[sage-devel] Re: backwards compatibility of sage 4.1.2 format

2009-10-22 Thread Bill Page
> After running action Evaluate All, I choose some expression inside the > worksheet and expected to make a small change to a constant and then > re-evaluate it by hitting control-shift. The result was "NameError: > name 'A' is not defined". Of course I meant to write: "by hitting Shift-Enter" -

[sage-devel] Re: new virtualbox image!

2009-10-23 Thread Bill Page
azingly, it is only 2MB bigger than the old sage vbox. > Nice! Regards, Bill Page. --~--~-~--~~~---~--~~ 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 mo

[sage-devel] Re: new virtualbox image!

2009-10-28 Thread Bill Page
configuration. Regards, Bill Page. On Wed, Oct 28, 2009 at 11:33 PM, William Stein wrote: > > On Mon, Oct 26, 2009 at 9:18 AM, mhampton wrote: >> >> I can't seem to get virtualbox 3.0.8 to work on my mac.  Things work >> fine on my windows machine, I did a small test b

[sage-devel] Re: Sage Integral Test Suite

2008-11-25 Thread Bill Page
"integral_test1.py", line 96, in time_Maxima_friCAS(integrand) File "integral_test1.py", line 81, in time_Maxima_friCAS print "Maxima Time:", mx_time.stats[_sage_const_3 ], mx_time.stats[_sage_const_4 ] AttributeError: 'str' object has no attribute &

[sage-devel] Re: Sage Integral Test Suite

2008-11-25 Thread Bill Page
[_sage_const_4 ] AttributeError: 'str' object has no attribute 'stats' The script runs ok if I comment out the timing: else: test_eval(test,test_int,desired_result) #time_Maxima_friCAS(integrand) Any ideas? Regards, Bill Page. -

[sage-devel] Re: Sage Integral Test Suite

2008-11-25 Thread Bill Page
it* [EMAIL PROTECTED]:~/sage-3.1.4$ --- It seems that none of these files has anything named 'stats': It appears that 'sage_timeit.py' was not updated by '-upgrade'. Note: Directory sage-3.1.4 is where I previously built sage from source. I did not change this name wh

<    1   2   3   4   >