NEWS
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:22k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. Copyright 1996, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
  2. 2009, 2010 Free Software Foundation, Inc.
  3. Verbatim copying and distribution of this entire article is permitted
  4. in any medium, provided this notice is preserved.
  5. Changes between GMP version 5.0.0 and 5.0.1
  6.   BUGS FIXED
  7.   * Fat builds fixed.
  8.   * Fixed crash for huge multiplies when old FFT_TABLE2 type of parameter
  9.     selection tables' sentinel was smaller than multiplied operands.
  10.   * The solib numbers now reflect the removal of the documented but preliminary
  11.     mpn_bdivmod function; we correctly flag incompatibility with GMP 4.3.
  12.     GMP 5.0.0 has this wrong, and should perhaps be uninstalled to avoid
  13.     confusion.
  14.   SPEEDUPS
  15.   * Multiplicaton of large numbers has indirectly been sped up through
  16.     better FFT tuning and processor recognition.  Since many operations
  17.     depend on multiplication, there will be a general speedup.
  18.   FEATURES
  19.   * More Core i3, i5 an Core i7 processor models are recognised.
  20.   * Fixes and workarounds for Mac OS quirks should make this GMP version
  21.     build using many of the different versions of "Xcode".
  22.   MISC
  23.   * The amount of scratch memory needed for multiplication of huge numbers
  24.     have been reduced substantially (but is still larger than in GMP 4.3.)
  25.   * Likewise, the amount of scratch memory needed for division of large
  26.     numbers have been reduced substantially.
  27.   * The FFT tuning code of tune/tuneup.c has been completely rewritten,
  28.     and new, large FFT parameter selection tables are provided for many
  29.     machines.
  30.   * Upgraded to the latest autoconf, automake, libtool.
  31. Changes between GMP version 4.3.X and 5.0.0
  32.   BUGS FIXED
  33.   * None (contains the same fixes as release 4.3.2).
  34.   SPEEDUPS
  35.   * Multiplication has been overhauled:
  36.     (1) Multiplication of larger same size operands has been improved with
  37.         the addition of two new Toom functions and a new internal function
  38.         mpn_mulmod_bnm1 (computing U * V mod (B^n-1), B being the word base.
  39.         This latter function is used for the largest products, waiting for a
  40.         better Schoenhage-Strassen U * V mod (B^n+1) implementation.
  41.     (2) Likewise for squaring.
  42.     (3) Multiplication of different size operands has been improved with the
  43.         addition of many new Toom function, and by selecting underlying
  44.         functions better from the main multiply functions.
  45.   * Division and mod have been overhauled:
  46.     (1) Plain "schoolbook" division is reimplemented using faster quotient
  47.         approximation.
  48.     (2) Division Q = N/D, R = N mod D where both the quotient and remainder
  49.         are needed now runs in time O(M(log(N))).  This is an improvement of
  50.         a factor log(log(N))
  51.     (3) Division where just the quotient is needed is now O(M(log(Q))) on
  52.         average.
  53.     (4) Modulo operations using Montgomery REDC form now take time O(M(n)).
  54.     (5) Exact division Q = N/D by means of mpz_divexact has been improved
  55.         for all sizes, and now runs in time O(M(log(N))).
  56.   * The function mpz_powm is now faster for all sizes.  Its complexity has
  57.     gone from O(M(n)log(n)m) to O(M(n)m) where n is the size of the modulo
  58.     argument and m is the size of the exponent.  It is also radically
  59.     faster for even modulus, since it now partially factors such modulus
  60.     and performs two smaller modexp operations, then uses CRT.
  61.   * The internal support for multiplication yielding just the lower n limbs
  62.     has been improved by using Mulders' algorithm.
  63.   * Computation of inverses, both plain 1/N and 1/N mod B^n have been
  64.     improved by using well-tuned Newton iterations, and wrap-around
  65.     multiplication using mpn_mulmod_bnm1.
  66.   * A new algorithm makes mpz_perfect_power_p asymptotically faster.
  67.   * The function mpz_remove uses a much faster algorithm, is better tuned,
  68.     and also benefits from the division improvements.
  69.   * Intel Atom and VIA Nano specific optimisations.
  70.   * Plus hundreds of smaller improvements and tweaks!
  71.   FEATURES
  72.   * New mpz function: mpz_powm_sec for side-channel quiet modexp
  73.     computations.
  74.   * New mpn functions: mpn_sqr, mpn_and_n, mpn_ior_n, mpn_xor_n, mpn_nand_n,
  75.     mpn_nior_n, mpn_xnor_n, mpn_andn_n, mpn_iorn_n, mpn_com, mpn_neg,
  76.     mpn_copyi, mpn_copyd, mpn_zero.
  77.   * The function mpn_tdiv_qr now allows certain argument overlap.
  78.   * Support for fat binaries for 64-bit x86 processors has been added.
  79.   * A new type, mp_bitcnt_t for bignum bit counts, has been introduced.
  80.   * Support for Windows64 through mingw64 has been added.
  81.   * The cofactors of mpz_gcdext and mpn_gcdext are now more strictly
  82.     normalised, returning to how GMP 4.2 worked.  (Note that also release
  83.     4.3.2 has this change.)
  84.   MISC
  85.   * The mpn_mul function should no longer be used for squaring,
  86.     instead use the new mpn_sqr.
  87.   * The algorithm selection has been improved, the number of thresholds have
  88.     more than doubled, and the tuning and use of existing thresholds have
  89.     been improved.
  90.   * The tune/speed program can measure many of new functions.
  91.   * The mpn_bdivmod function has been removed.  We do not consider this an
  92.     incompatible change, since the function was marked as preliminary.
  93.   * The testsuite has been enhanced in various ways.
  94. Changes between GMP version 4.3.1 and 4.3.2
  95.   Bugs:
  96.   * Fixed bug in mpf_eq.
  97.   * Fixed overflow issues in mpz_set_str, mpz_inp_str, mpf_set_str, and
  98.     mpf_get_str.
  99.   * Avoid unbounded stack allocation for unbalanced multiplication.
  100.   * Fixed bug in FFT multiplication.
  101.   Speedups:
  102.   * None, except that proper processor recognition helps affected processors.
  103.   Features:
  104.   * Recognise more "Core 2" processor variants.
  105.   * The cofactors of mpz_gcdext and mpn_gcdext are now more strictly
  106.     normalised, returning to how GMP 4.2 worked.
  107. Changes between GMP version 4.3.0 and 4.3.1
  108.   Bugs:
  109.   * Fixed bug in mpn_gcdext, affecting also mpz_gcdext and mpz_invert.
  110.     The bug could cause a cofactor to have a leading zero limb, which
  111.     could lead to crashes or miscomputation later on.
  112.   * Fixed some minor documentation issues.
  113.   Speedups:
  114.   * None.
  115.   Features:
  116.   * Workarounds for various issues with Mac OS X's build tools.
  117.   * Recognise more IBM "POWER" processor variants.
  118. Changes between GMP version 4.2.X and 4.3.0
  119.   Bugs:
  120.   * Fixed bug in mpz_perfect_power_p with recognition of negative perfect
  121.     powers that can be written both as an even and odd power.
  122.   * We might accidentally have added bugs since there is a large amount of
  123.     new code in this release.
  124.   Speedups:
  125.   * Vastly improved assembly code for x86-64 processors from AMD and Intel.
  126.   * Major improvements also for many other processor families, such as
  127.     Alpha, PowerPC, and Itanium.
  128.   * New sub-quadratic mpn_gcd and mpn_gcdext, as well as improved basecase
  129.     gcd code.
  130.   * The multiply FFT code has been slightly improved.
  131.   * Balanced multiplication now uses 4-way Toom in addition to schoolbook,
  132.     Karatsuba, 3-way Toom, and FFT.
  133.   * Unbalanced multiplication has been vastly improved.
  134.   * Improved schoolbook division by means of faster quotient approximation.
  135.   * Several new algorithms for division and mod by single limbs, giving
  136.     many-fold speedups.
  137.   * Improved nth root computations.
  138.   * The mpz_nextprime function uses sieving and is much faster.
  139.   * Countless minor tweaks.
  140.   Features:
  141.   * Updated support for fat binaries for x86_32 include current processors
  142.   * Lots of new mpn internal interfaces.  Some of them will become public
  143.     in a future GMP release.
  144.   * Support for the 32-bit ABI under x86-apple-darwin.
  145.   * x86 CPU recognition code should now default better for future
  146.     processors.
  147.   * The experimental nails feature does not work in this release, but
  148.     it might be re-enabled in the future.
  149.   Misc:
  150.   * The gmp_version variable now always contains three parts.  For this
  151.     release, it is "4.3.0".
  152. Changes between GMP version 4.2.3 and 4.2.4
  153.   Bugs:
  154.   * Fix bug with parsing exponent '+' sign in mpf.
  155.   * Fix an allocation bug in mpf_set_str, also affecting mpf_init_set_str, and
  156.     mpf_inp_str.
  157.   Speedups:
  158.   * None, except that proper processor recognition helps affected processors.
  159.   Features:
  160.   * Recognize new AMD processors.
  161. Changes between GMP version 4.2.2 and 4.2.3
  162.   Bugs:
  163.   * Fix x86 CPU recognition code to properly identify recent AMD and Intel
  164.     64-bit processors.
  165.   * The >> operator of the C++ wrapper gmpxx.h now does floor rounding, not
  166.     truncation.
  167.   * Inline semantics now follow the C99 standard, and works with recent GCC
  168.     releases.
  169.   * C++ bitwise logical operations work for more types.
  170.   * For C++, gmp.h now includes cstdio, improving compiler compatibility.
  171.   * Bases > 36 now work properly in mpf_set_str.
  172.   Speedups:
  173.   * None, except that proper processor recognition helps affected processors.
  174.   Features:
  175.   * The allocation functions now detect overflow of the mpz_t type.  This means
  176.     that overflow will now cause an abort, except when the allocation
  177.     computation itself overflows.  (Such overflow can probably only happen in
  178.     powering functions; we will detect powering overflow in the future.)
  179. Changes between GMP version 4.2.1 and 4.2.2
  180.   * License is now LGPL version 3.
  181.   Bugs:
  182.   * Shared library numbers corrected for libcxx.
  183.   * Fixed serious bug in gmpxx.h where a=a+b*c would generate garbage.
  184.     Note that this only affects C++ programs.
  185.   * Fix crash in mpz_set_d for arguments with large negative exponent.
  186.   * Fix 32-bit ABI bug with Itanium assembly for popcount and hamdist.
  187.   * Fix assembly syntax problem for powerpc-ibm-aix with AIX native assembler.
  188.   * Fix problems with x86 --enable-fat, where the compiler where told to
  189.     generate code for the build machine, not plain i386 code as it should.
  190.   * Improved recognition of powerpc systems wrt Altivec/VMX capability.
  191.   * Misc minor fixes, mainly workarounds for compiler/assembler bugs.
  192.   Speedups:
  193.   * "Core 2" and Pentium 4 processors, running in 64-bit mode will get a
  194.      slight boost as they are now specifically recognized.
  195.   Features:
  196.   * New support for x86_64-solaris
  197.   * New, rudimentary support for x86-apple-darwin and x86_64-apple-darwin.
  198.     (Please see http://gmplib.org/macos.html for more information.)
  199. Changes between GMP version 4.2 and 4.2.1
  200.   Bugs:
  201.   * Shared library numbers corrected.
  202.   * Broken support for 32-bit AIX fixed.
  203.   * Misc minor fixes.
  204.   Speedups:
  205.   * Exact division (mpz_divexact) now falls back to plain division for large
  206.     operands.
  207.   Features:
  208.   * Support for some new systems.
  209. Changes between GMP version 4.1.4 and 4.2
  210.   Bugs:
  211.   * Minor bug fixes and code generalizations.
  212.   * Expanded and improved test suite.
  213.   Speedups:
  214.   * Many minor optimizations, too many to mention here.
  215.   * Division now always subquadratic.
  216.   * Computation of n-factorial much faster.
  217.   * Added basic x86-64 assembly code.
  218.   * Floating-point output is now subquadratic for all bases.
  219.   * FFT multiply code now about 25% faster.
  220.   * Toom3 multiply code faster.
  221.   Features:
  222.   * Much improved configure.
  223.   * Workarounds for many more compiler bugs.
  224.   * Temporary allocations are now made on the stack only if small.
  225.   * New systems supported: HPPA-2.0 gcc, IA-64 HP-UX, PowerPC-64 Darwin,
  226.     Sparc64 GNU/Linux.
  227.   * New i386 fat binaries, selecting optimised code at runtime (--enable-fat).
  228.   * New build option: --enable-profiling=instrument.
  229.   * New memory function: mp_get_memory_functions.
  230.   * New Mersenne Twister random numbers: gmp_randinit_mt, also now used for
  231.     gmp_randinit_default.
  232.   * New random functions: gmp_randinit_set, gmp_urandomb_ui, gmp_urandomm_ui.
  233.   * New integer functions: mpz_combit, mpz_rootrem.
  234.   * gmp_printf etc new type "M" for mp_limb_t.
  235.   * gmp_scanf and friends now accept C99 hex floats.
  236.   * Numeric input and output can now be in bases up to 62.
  237.   * Comparisons mpz_cmp_d, mpz_cmpabs_d, mpf_cmp_d recognise infinities.
  238.   * Conversions mpz_get_d, mpq_get_d, mpf_get_d truncate towards zero,
  239.     previously their behaviour was unspecified.
  240.   * Fixes for overflow issues with operands >= 2^31 bits.
  241.   Caveats:
  242.   * mpfr is gone, and will from now on be released only separately.  Please see
  243.     www.mpfr.org.
  244. Changes between GMP version 4.1.3 and 4.1.4
  245. * Bug fix to FFT multiplication code (crash for huge operands).
  246. * Bug fix to mpf_sub (miscomputation).
  247. * Support for powerpc64-gnu-linux.
  248. * Better support for AMD64 in 32-bit mode.
  249. * Upwardly binary compatible with 4.1.3, 4.1.2, 4.1.1, 4.1, 4.0.1, 4.0,
  250.   and 3.x versions.
  251. Changes between GMP version 4.1.2 and 4.1.3
  252. * Bug fix for FFT multiplication code (miscomputation).
  253. * Bug fix to K6 assembly code for gcd.
  254. * Bug fix to IA-64 assembly code for population count.
  255. * Portability improvements, most notably functional AMD64 support.
  256. * mpz_export allows NULL for countp parameter.
  257. * Many minor bug fixes.
  258. * mpz_export allows NULL for countp parameter.
  259. * Upwardly binary compatible with 4.1.2, 4.1.1, 4.1, 4.0.1, 4.0, and 3.x
  260.   versions.
  261. Changes between GMP version 4.1.1 and 4.1.2
  262. * Bug fixes.
  263. Changes between GMP version 4.1 and 4.1.1
  264. * Bug fixes.
  265. * New systems supported: NetBSD and OpenBSD sparc64.
  266. Changes between GMP version 4.0.1 and 4.1
  267. * Bug fixes.
  268. * Speed improvements.
  269. * Upwardly binary compatible with 4.0, 4.0.1, and 3.x versions.
  270. * Asymptotically fast conversion to/from strings (mpz, mpq, mpn levels), but
  271.   also major speed improvements for tiny operands.
  272. * mpn_get_str parameter restrictions relaxed.
  273. * Major speed improvements for HPPA 2.0 systems.
  274. * Major speed improvements for UltraSPARC systems.
  275. * Major speed improvements for IA-64 systems (but still sub-optimal code).
  276. * Extended test suite.
  277. * mpfr is back, with many bug fixes and portability improvements.
  278. * New function: mpz_ui_sub.
  279. * New functions: mpz_export, mpz_import.
  280. * Optimization for nth root functions (mpz_root, mpz_perfect_power_p).
  281. * Optimization for extended gcd (mpz_gcdext, mpz_invert, mpn_gcdext).
  282. * Generalized low-level number format, reserving a `nails' part of each
  283.   limb.  (Please note that this is really experimental; some functions
  284.   are likely to compute garbage when nails are enabled.)
  285. * Nails-enabled Alpha 21264 assembly code, allowing up to 75% better
  286.   performance.  (Use --enable-nails=4 to enable it.)
  287. Changes between GMP version 4.0 and 4.0.1
  288. * Bug fixes.
  289. Changes between GMP version 3.1.1 and 4.0
  290. * Bug fixes.
  291. * Speed improvements.
  292. * Upwardly binary compatible with 3.x versions.
  293. * New CPU support: IA-64, Pentium 4.
  294. * Improved CPU support: 21264, Cray vector systems.
  295. * Support for all MIPS ABIs: o32, n32, 64.
  296. * New systems supported: Darwin, SCO, Windows DLLs.
  297. * New divide-and-conquer square root algorithm.
  298. * New algorithms chapter in the manual.
  299. * New malloc reentrant temporary memory method.
  300. * New C++ class interface by Gerardo Ballabio (beta).
  301. * Revamped configure, featuring ABI selection.
  302. * Speed improvements for mpz_powm and mpz_powm_ui (mainly affecting small
  303.   operands).
  304. * mpz_perfect_power_p now properly recognizes 0, 1, and negative perfect
  305.   powers.
  306. * mpz_hamdist now supports negative operands.
  307. * mpz_jacobi now accepts non-positive denominators.
  308. * mpz_powm now supports negative exponents.
  309. * mpn_mul_1 operand overlap requirements relaxed.
  310. * Float input and output uses locale specific decimal point where available.
  311. * New gmp_printf, gmp_scanf and related functions.
  312. * New division functions: mpz_cdiv_q_2exp, mpz_cdiv_r_2exp, mpz_divexact_ui.
  313. * New divisibility tests: mpz_divisible_p, mpz_divisible_ui_p,
  314.   mpz_divisible_2exp_p, mpz_congruent_p, mpz_congruent_ui_p,
  315.   mpz_congruent_2exp_p.
  316. * New Fibonacci function: mpz_fib2_ui.
  317. * New Lucas number functions: mpz_lucnum_ui, mpz_lucnum2_ui.
  318. * Other new integer functions: mpz_cmp_d, mpz_cmpabs_d, mpz_get_d_2exp,
  319.   mpz_init2, mpz_kronecker, mpz_lcm_ui, mpz_realloc2.
  320. * New rational I/O: mpq_get_str, mpq_inp_str, mpq_out_str, mpq_set_str.
  321. * Other new rational functions: mpq_abs, mpq_cmp_si, mpq_div_2exp,
  322.   mpq_mul_2exp, mpq_set_f.
  323. * New float tests: mpf_integer_p, mpf_fits_sint_p, mpf_fits_slong_p,
  324.   mpf_fits_sshort_p, mpf_fits_uint_p, mpf_fits_ulong_p, mpf_fits_ushort_p.
  325. * Other new float functions: mpf_cmp_d, mpf_get_default_prec, mpf_get_si,
  326.   mpf_get_ui, mpf_get_d_2exp.
  327. * New random functions: gmp_randinit_default, gmp_randinit_lc_2exp_size.
  328. * New demo expression string parser (see demos/expr).
  329. * New preliminary perl interface (see demos/perl).
  330. * Tuned algorithm thresholds for many more CPUs.
  331. Changes between GMP version 3.1 and 3.1.1
  332. * Bug fixes for division (rare), mpf_get_str, FFT, and miscellaneous minor
  333.   things.
  334. Changes between GMP version 3.0 and 3.1
  335. * Bug fixes.
  336. * Improved `make check' running more tests.
  337. * Tuned algorithm cutoff points for many machines.  This will improve speed for
  338.   a lot of operations, in some cases by a large amount.
  339. * Major speed improvements: Alpha 21264.
  340. * Some speed improvements: Cray vector computers, AMD K6 and Athlon, Intel P5
  341.   and Pentium Pro/II/III.
  342. * The mpf_get_prec function now works as it did in GMP 2.
  343. * New utilities for auto-tuning and speed measuring.
  344. * Multiplication now optionally uses FFT for very large operands.  (To enable
  345.   it, pass --enable-fft to configure.)
  346. * Support for new systems: Solaris running on x86, FreeBSD 5, HP-UX 11, Cray
  347.   vector computers, Rhapsody, Nextstep/Openstep, MacOS.
  348. * Support for shared libraries on 32-bit HPPA.
  349. * New integer functions: mpz_mul_si, mpz_odd_p, mpz_even_p.
  350. * New Kronecker symbol functions: mpz_kronecker_si, mpz_kronecker_ui,
  351.   mpz_si_kronecker, mpz_ui_kronecker.
  352. * New rational functions: mpq_out_str, mpq_swap.
  353. * New float functions: mpf_swap.
  354. * New mpn functions: mpn_divexact_by3c, mpn_tdiv_qr.
  355. * New EXPERIMENTAL function layer for accurate floating-point arithmetic, mpfr.
  356.   To try it, pass --enable-mpfr to configure.  See the mpfr subdirectory for
  357.   more information; it is not documented in the main GMP manual.
  358. Changes between GMP version 3.0 and 3.0.1
  359. * Memory leaks in gmp_randinit and mpz_probab_prime_p fixed.
  360. * Documentation for gmp_randinit fixed.  Misc documentation errors fixed.
  361. Changes between GMP version 2.0 and 3.0
  362. * Source level compatibility with past releases (except mpn_gcd).
  363. * Bug fixes.
  364. * Much improved speed thanks to both host independent and host dependent
  365.   optimizations.
  366. * Switch to autoconf/automake/libtool.
  367. * Support for building libgmp as a shared library.
  368. * Multiplication and squaring using 3-way Toom-Cook.
  369. * Division using the Burnikel-Ziegler method.
  370. * New functions computing binomial coefficients: mpz_bin_ui, mpz_bin_uiui.
  371. * New function computing Fibonacci numbers: mpz_fib_ui.
  372. * New random number generators: mpf_urandomb, mpz_rrandomb, mpz_urandomb,
  373.   mpz_urandomm, gmp_randclear, gmp_randinit, gmp_randinit_lc_2exp,
  374.   gmp_randseed, gmp_randseed_ui.
  375. * New function for quickly extracting limbs: mpz_getlimbn.
  376. * New functions performing integer size tests: mpz_fits_sint_p,
  377.   mpz_fits_slong_p, mpz_fits_sshort_p, mpz_fits_uint_p, mpz_fits_ulong_p,
  378.   mpz_fits_ushort_p.
  379. * New mpf functions: mpf_ceil, mpf_floor, mpf_pow_ui, mpf_trunc.
  380. * New mpq function: mpq_set_d.
  381. * New mpz functions: mpz_addmul_ui, mpz_cmpabs, mpz_cmpabs_ui, mpz_lcm,
  382.   mpz_nextprime, mpz_perfect_power_p, mpz_remove, mpz_root, mpz_swap,
  383.   mpz_tdiv_ui, mpz_tstbit, mpz_xor.
  384. * New mpn function: mpn_divexact_by3.
  385. * New CPU support: DEC Alpha 21264, AMD K6 and Athlon, HPPA 2.0 and 64,
  386.   Intel Pentium Pro and Pentium-II/III, Sparc 64, PowerPC 64.
  387. * Almost 10 times faster mpz_invert and mpn_gcdext.
  388. * The interface of mpn_gcd has changed.
  389. * Better support for MIPS R4x000 and R5000 under Irix 6.
  390. * Improved support for SPARCv8 and SPARCv9 processors.
  391. Changes between GMP version 2.0 and 2.0.2
  392. * Many bug fixes.
  393. Changes between GMP version 1.3.2 and 2.0
  394. * Division routines in the mpz class have changed.  There are three classes of
  395.   functions, that rounds the quotient to -infinity, 0, and +infinity,
  396.   respectively.  The first class of functions have names that begin with
  397.   mpz_fdiv (f is short for floor), the second class' names begin with mpz_tdiv
  398.   (t is short for trunc), and the third class' names begin with mpz_cdiv (c is
  399.   short for ceil).
  400.   The old division routines beginning with mpz_m are similar to the new
  401.   mpz_fdiv, with the exception that some of the new functions return useful
  402.   values.
  403.   The old function names can still be used.  All the old functions names will
  404.   now do floor division, not trunc division as some of them used to.  This was
  405.   changed to make the functions more compatible with common mathematical
  406.   practice.
  407.   The mpz_mod and mpz_mod_ui functions now compute the mathematical mod
  408.   function.  I.e., the sign of the 2nd argument is ignored.
  409. * The mpq assignment functions do not canonicalize their results.  A new
  410.   function, mpq_canonicalize must be called by the user if the result is not
  411.   known to be canonical.
  412. * The mpn functions are now documented.  These functions are intended for
  413.   very time critical applications, or applications that need full control over
  414.   memory allocation.  Note that the mpn interface is irregular and hard to
  415.   use.
  416. * New functions for arbitrary precision floating point arithmetic.  Names
  417.   begin with `mpf_'.  Associated type mpf_t.
  418. * New and improved mpz functions, including much faster GCD, fast exact
  419.   division (mpz_divexact), bit scan (mpz_scan0 and mpz_scan1), and number
  420.   theoretical functions like Jacobi (mpz_jacobi) and multiplicative inverse
  421.   (mpz_invert).
  422. * New variable types (mpz_t and mpq_t) are available that makes syntax of
  423.   mpz and mpq calls nicer (no need for & before variables).  The MP_INT and
  424.   MP_RAT types are still available for compatibility.
  425. * Uses GNU configure.  This makes it possible to choose target architecture
  426.   and CPU variant, and to compile into a separate object directory.
  427. * Carefully optimized assembly for important inner loops.  Support for DEC
  428.   Alpha, Amd 29000, HPPA 1.0 and 1.1, Intel Pentium and generic x86, Intel
  429.   i960, Motorola MC68000, MC68020, MC88100, and MC88110, Motorola/IBM
  430.   PowerPC, National NS32000, IBM POWER, MIPS R3000, R4000, SPARCv7,
  431.   SuperSPARC, generic SPARCv8, and DEC VAX.  Some support also for ARM,
  432.   Clipper, IBM ROMP (RT), and Pyramid AP/XP.
  433. * Faster.  Thanks to the assembler code, new algorithms, and general tuning.
  434.   In particular, the speed on machines without GCC is improved.
  435. * Support for machines without alloca.
  436. * Now under the LGPL.
  437. INCOMPATIBILITIES BETWEEN GMP 1 AND GMP 2
  438. * mpq assignment functions do not canonicalize their results.
  439. * mpz division functions round differently.
  440. * mpz mod functions now really compute mod.
  441. * mpz_powm and mpz_powm_ui now really use mod for reduction.