Hello, Jason.
You wrote 21 мая 2010 г., 3:48:03:
> A while ago someone talked about incorporating ALGLIB into Sage to
> provide, among other things, multiprecision linear algebra.
It was me :) I am working on this issue. I expect that interface
between double precision ALGLIB and Python w
On May 19, 2010, at 10:14 , Minh Nguyen wrote:
Hi folks,
Sage 4.4.2 was released on May 19, 2010. It is available at
http://www.sagemath.org/download.html
* About Sage (http://www.sagemath.org)
Built both 32- and 64-bit versions on Mac OS X. Results were mixed.
10.6.3 (Core i7
versions
on net in sage-4.4.2.rc0
python 2.6.5 2.6.4.p7
boost 1.421.34.1
R 2.11.0beta 2.10.1
tachyon-0.98.9 0.98beta.p10
atlas3.9.23atlas-3.8.3.p12
zlib_1.2.3.4 1.2.3
sympy_0.6.6sympy-0.6.4.
scipy_0.7.2
Here is an excerpt from "deps" , the makefile in spkg/standard
$(INST)/$(FORTRAN):
$(SAGE_SPKG) $(FORTRAN) 2>&1
$(INST)/$(F2C): $(INST)/$(FORTRAN)
$(SAGE_SPKG) $(INST)/$(F2C) 2>&1
^^^ Notice that this is
wrong.
ANNOUNCEMENT
Sage is now operative on another platform.*
After messing around with various versions of sage for a couple years,
I
have finally been able to get the sage 4.4 prompt appearing for the
first
time on my Alpha based Digital/Compaq/HP XP1000 workstation running
Hi folks,
For anyone interested, I have placed a t2.math binary of Sage 4.4.2 at
http://sage.math.washington.edu/home/release/sage-4.4.2/
--
Regards
Minh Van Nguyen
--
To post to this group, send an email to sage-devel@googlegroups.com
To unsubscribe from this group, send an email to
sage-de
This is definitely an example of where Sage and GAP differ in their
approaches, but this is more about subgroups/subactions... and there hasn't
been much discussion on this topic yet.
GAP evaluates subgroups/subactions without regard for the degree of the
original action. Thus, if you take your ty
Hi Volker,
Fine, I am now convinced that you are right - we do need more
subclasses of cones ;-) And probably the same for fans?
Since I am still a bit paranoid about speed and memory consumption,
what do you think of the following scheme:
Make classes EnhancedFan and Enhanced Cone (not exposed
A while ago someone talked about incorporating ALGLIB into Sage to
provide, among other things, multiprecision linear algebra. I just saw
another package that does this:
http://mplapack.sourceforge.net/
Does anyone have experience with mplapack? How does it compare to
ALGLIB in linear algeb
>
> It also looks like that works fine now, too.
>
> I am now seeing an error message when starting the sage notebook - see below.
>
> If I displayhttp://localhost:8000instead
> ofhttp://localhost:8000/?startup_token=ae62addaf110060a2765c595ea17d16
> the notebook works OK.
> Best, Paul
>
Thank y
On May 20, 5:13 pm, kcrisman wrote:
> On May 20, 4:33 pm, Rob Beezer wrote:
>
>
>
> > Abelian groups is second on my list (right after graphs + latex), but
> > as I've been told, "many have failed here." So I'd get out of the way
> > (or help) if anybody else is interested.
>
> > And I have a
On May 20, 4:33 pm, Rob Beezer wrote:
> Abelian groups is second on my list (right after graphs + latex), but
> as I've been told, "many have failed here." So I'd get out of the way
> (or help) if anybody else is interested.
>
> And I have a vested interest in permutation groups..
>
> Rob
>
Abelian groups is second on my list (right after graphs + latex), but
as I've been told, "many have failed here." So I'd get out of the way
(or help) if anybody else is interested.
And I have a vested interest in permutation groups..
Rob
On May 20, 1:18 pm, William Stein wrote:
> Let's rew
Let's rewrite:
* abelian groups
* permutations groups
* piecewise functions
* Sage's riemann_roch_basis command (wrapping Brill-Noether)...
William
On Thu, May 20, 2010 at 12:58 PM, Dima Pasechnik wrote:
> Indeed, somehow people who wrote the permutation groups code in Sage
> kept forge
Indeed, somehow people who wrote the permutation groups code in Sage
kept forgetting that
a permutation group is a pair (G,X), where G is a group and X is a
set, on which G acts.
Once you think that you can get away with permutations alone, you are
doomed...
(same would apply to any group actions,
To summarize: Plain python cannot pickle inner classes or functions:
>>> class outer(object):
... class inner(object):
... pass
>>> o = outer()
>>> pickle.dumps(o)
(works)
>>> i = o.inner()
>>> pickle.dumps(i)
(ERROR)
The work-around is to make the cone factory a top-level class (or
functio
There's a problem with centralizers of permutation groups that sounds
like either (a) it is related, or (b) might not have happened if there
had been more care about just waht the symbol set was for a
permutation group. I posted it separately so it would be easy to find
in the archives, and thinki
Consider the following discovered in the course of debugging an IRC
query:
sage: G=SymmetricGroup(4)
sage: g=G("(1,2)")
sage: g in G.centralizer(g)
True
sage: G=SymmetricGroup(3)
sage: g=G("(1,2)")
sage: g in G.centralizer(g)
False
Explanation:
In the first case, (3,4) is in the centralizer and
On Thu, May 20, 2010 at 6:27 AM, gerard henry wrote:
> hello all,
> i've just installed the tarball:
> sage-4.4.1-linux-64bit-arch_linux-x86_64-Linux.tar.gz.
> And it fails:
> [he...@octopus ~]$ sage
> --
> | Sage Version 4.4.1, R
On 5/20/10 9:30 AM, Andrey Novoseltsev wrote:
You cannot pickle functions
According to
http://docs.python.org/library/pickle.html#what-can-be-pickled-and-unpickled
you can pickle certain types of functions. I don't know if that helps
at all, but your statement about pickling functions in
Hi all,
I tried "sage -ba" and the build now completes. Sage now starts without
errors! So it looks to me like the patch to module_list.py is needed for
openSUSE 11.2. Thanks, all.
I also ran:
./sage -docbuild all html 2>&1 | tee -a dochtml.log
It also looks like that works fine now, too.
I a
Hi Volker,
That definitely makes sense, let me think a bit about it and then post
the comments/agreements.
You cannot pickle functions, so you cannot pass a factory to construct
cones (because you may need to have more cones later, so you need to
store it). If you apply my cone patch and remove _
The authors of the NZMATH paper say of Sage: "We would like to mention
about SAGE, which is a project by Python for Mathematics and has
gained a great success, is the project gathering already existing
systems into one system. It uses Python as a glue language, and the
concept is completely differ
hello all,
i've just installed the tarball:
sage-4.4.1-linux-64bit-arch_linux-x86_64-Linux.tar.gz.
And it fails:
[he...@octopus ~]$ sage
--
| Sage Version 4.4.1, Release Date: 2010-05-02 |
| Type notebook() fo
On Itanium systems, icc cannot compile GAP, one of Sage components.
(well, it can, but the resulting program does not work)
On May 20, 3:25 am, Mag Gam wrote:
> Has anyone attempted to compile sage with ICC? This is the Intel
> compiler. I would like to do some testing with this therefore I would
Hi Andrey,
I like the ToricLattice/ToricLatticeMorphism/FanMorphism, though I
would call the latter ToricMorphism. Domain/Codomain always reminds me
of "Cohomology Operations and Homology Cooperations" (Capter 17 in
Switzer) but if we want to use that nomenclature then thats fine with
me :-)
As f
On 20 May 2010 02:25, Mag Gam wrote:
> Has anyone attempted to compile sage with ICC? This is the Intel
> compiler. I would like to do some testing with this therefore I would
> appreciate any tips.
I've not tried ICC, but I have tried SunStudio on Solaris (which is
also available on Linux). I ho
Hello, Bill.
> One eventually gets fed up, and I'm just announcing what I already
> planned to do months ago.
I think you took the wrong hint. You did impressive and important job
which is appreciated by both SAGE and bignum communities. I know that
people sometimes get tired, but I hope tha
28 matches
Mail list logo