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
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
+ 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
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
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 ---
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
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
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
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
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
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
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
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
('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
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,
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.
--~--~-~--~~~
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.
--~--~-
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
;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
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
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
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&
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
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
> &
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/
> >>
> >
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.
--~-
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
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
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
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
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
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
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? :-)
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
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
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
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
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
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
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
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
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.
>
([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
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)')
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.
--~--~-~--~~~-
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,
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
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
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
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
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
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
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
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
-- 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:
> > ...
> >>
-- 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
-- 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
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('
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
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)
&
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
;
+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
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
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
--
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.
--~--
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
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
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
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
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
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:
>
> >
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
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
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
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
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
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
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
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
>>
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
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
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
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
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 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
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
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
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
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
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
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
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
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,
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
> 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"
-
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
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
"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_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.
-
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
101 - 200 of 365 matches
Mail list logo