[genius] Thu Feb 26 15:01:17 2015 Jiri (George) Lebl <jirka 5z com>



commit 77c61ec947a080183398444bac1a5d50342768d4
Author: Jiri (George) Lebl <jiri lebl gmail com>
Date:   Thu Feb 26 15:01:20 2015 -0600

    Thu Feb 26 15:01:17 2015  Jiri (George) Lebl <jirka 5z com>
    
        * lib/number_theory/primes.gel: update mersenne highest doublechecked
          exponent

 ChangeLog                    |    5 +++++
 NEWS                         |    6 ++++++
 lib/number_theory/primes.gel |    6 +++---
 3 files changed, 14 insertions(+), 3 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 5b20f2d..27da48f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Feb 26 15:01:17 2015  Jiri (George) Lebl <jirka 5z com>
+
+       * lib/number_theory/primes.gel: update mersenne highest doublechecked
+         exponent
+
 Thu Feb 26 14:30:40 2015  Jiri (George) Lebl <jirka 5z com>
 
        * lib/functions/elementary.gel, src/funclib.c: Use MPFR version of
diff --git a/NEWS b/NEWS
index 80cd06e..f2d5e65 100644
--- a/NEWS
+++ b/NEWS
@@ -3,6 +3,12 @@ Changes to 1.0.20
 * Add more sizes of icons including SVG, and add Keywords to the .desktop file
 * Documentation updates
 * Fix PeriodicExtension function
+* ErrorFunction (erf) is using MPFR for real values so it is far more precise
+  and faster
+* The fourier series example is no longer using a hand coded graph and hand
+  computed series, so it can now be easily modified to show series for
+  different functions
+* Fix GCC 5 compilation
 * A couple of minor fixes in the plotting code including one possible crasher
 * Translation updates (FIXME)
 
diff --git a/lib/number_theory/primes.gel b/lib/number_theory/primes.gel
index 78d498f..e067db1 100644
--- a/lib/number_theory/primes.gel
+++ b/lib/number_theory/primes.gel
@@ -121,10 +121,10 @@ function IsMersennePrimeExponent(p) = (
                return true;
 
        # http://www.mersenne.org / GIMPS doublechecked everything up
-       # to 30,852,383 (on Sep 22, 2014)
-       if p < 30852383 then
+       # to 33,560,269 (on Feb 26, 2015)
+       if p < 33560269 then
                return false;
 
-       error("IsMersennePrimeExponent: Number too large (known values up to: " + 30852383 + ")");
+       error("IsMersennePrimeExponent: Number too large (known values up to: " + 33560269 + ")");
        bailout
 );


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]