|
|
last edited 16 years ago by alfredo |
1 2 3 4 | ||
Editor: alfredo
Time: 2008/10/29 00:17:44 GMT-7 |
||
Note: Interesting result in OpenAxiom on Windows |
added:
From alfredo Wed Oct 29 00:17:44 -0700 2008
From: alfredo
Date: Wed, 29 Oct 2008 00:17:44 -0700
Subject: Interesting result in OpenAxiom on Windows
Message-ID: <20081029001744-0700@axiom-wiki.newsynthesis.org>
(1) -> )time on
(1) -> primes(1,1000000);
Type: List Integer
Time: 3.94 (EV) = 3.94 sec
It seems that axiom's primes
function, returning the list of primes between two given numbers, is unnecessarily slow:
)time on
primes(1,1000000);
Time: 9.64 (EV) + 0.01 (OT) + 3.75 (GC) = 13.40 sec
vs.
Martin