[genius] Tue Dec 20 17:31:08 2016 Jiri (George) Lebl <jirka 5z com>



commit 145afe0533b63e6b4136573aa522a17a311a9a06
Author: Jiri (George) Lebl <jiri lebl gmail com>
Date:   Tue Dec 20 17:31:11 2016 -0600

    Tue Dec 20 17:31:08 2016  Jiri (George) Lebl <jirka 5z com>
    
        * NEWS: update
    
        * lib/number_theory/primes.gel: update GIMPS limit

 ChangeLog                    |    6 ++++++
 NEWS                         |   30 ++++++++++++++++++++++++++++++
 lib/number_theory/primes.gel |    6 +++---
 3 files changed, 39 insertions(+), 3 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 8191d1b..0de3e56 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Tue Dec 20 17:31:08 2016  Jiri (George) Lebl <jirka 5z com>
+
+       * NEWS: update
+
+       * lib/number_theory/primes.gel: update GIMPS limit
+
 Tue Dec 20 15:11:04 2016  Jiri (George) Lebl <jirka 5z com>
 
        * examples/explicit-heat-fdm.gel, examples/explicit-heat-fdm-line.gel:
diff --git a/NEWS b/NEWS
index bfa5fca..1ddcd24 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,33 @@
+Changes to 1.0.22
+
+* Add a line plot version of the heat equation FDM animation example,
+  and improve the surface plot version
+* Add argument principle example
+* Add two Mandelbrot set examples and a Newton's fractal example
+* Add examples for visualizing complex mappings
+* Add example vizualizations for Riemann and Darboux sums
+* Split the examples into submenus as there is now too many of them
+* Add "filled" property to lines to allow drawing filled polygons
+* Add LinePlotWaitForClick and LinePlotMouseLocation functions for interactive
+  programs (used for some of the above new examples)
+* LinePlotDrawPoints and LinePlotDrawLine accept a column vector of
+  complex nubmers.
+* Fix setting of elements in transposed matrices (vectors)
+* Fix doc string to ErrorFunction (Thanks to Ask Hjorth Larsen)
+* Fix bad behavour upon double hitting "Run"
+* Fix vte deprecations, require 0.26 now
+* Fix some strings and fixes to documentation (thanks to Anders Johnsson)
+* Fix segfault when trying to swap a protected id with swapwith
+* Fix StripZeroColumns behavior on a zero matrix
+* Fix Subfactorial (Anders Johnsson), and let Subfactorial, Factorial,
+  DoubleFactorial apply over matrix.
+* Fix some inverse trig functions with complex arguments.
+* Other minor fixes including some crashes
+* Translation updates (FIXME)
+
+* During making of these changes the author (Jiri) was partially supported by
+  NSF grant DMS 1362337 and the Oklahoma State University
+
 Changes to 1.0.21
 
 * Add vibrating drumhead modes example, heat equation with explicit FDM,
diff --git a/lib/number_theory/primes.gel b/lib/number_theory/primes.gel
index b3db114..b948ead 100644
--- a/lib/number_theory/primes.gel
+++ b/lib/number_theory/primes.gel
@@ -122,10 +122,10 @@ function IsMersennePrimeExponent(p) = (
                return true;
 
        # http://www.mersenne.org / GIMPS doublechecked everything up
-       # to 34,969,871 (on Jan 20, 2016)
-       if p < 34969871 then
+       # to 38,201,927 (on Dec 20, 2016)
+       if p < 38201927 then
                return false;
 
-       error("IsMersennePrimeExponent: Number too large (known values up to: " + 34969871 + ")");
+       error("IsMersennePrimeExponent: Number too large (known values up to: " + 38201927 + ")");
        bailout
 );


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