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

数学计算

开发平台:

Unix_Linux

  1. Copyright 1991, 1996, 1999, 2000, 2007 Free Software Foundation, Inc.
  2. This file is part of the GNU MP Library.
  3. The GNU MP Library is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU Lesser General Public License as published by
  5. the Free Software Foundation; either version 3 of the License, or (at your
  6. option) any later version.
  7. The GNU MP Library is distributed in the hope that it will be useful, but
  8. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  9. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  10. License for more details.
  11. You should have received a copy of the GNU Lesser General Public License
  12. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  13. THE GNU MP LIBRARY
  14. GNU MP is a library for arbitrary precision arithmetic, operating on signed
  15. integers, rational numbers, and floating point numbers.  It has a rich set of
  16. functions, and the functions have a regular interface.
  17. GNU MP is designed to be as fast as possible, both for small operands and huge
  18. operands.  The speed is achieved by using fullwords as the basic arithmetic
  19. type, by using fast algorithms, with carefully optimized assembly code for the
  20. most common inner loops for lots of CPUs, and by a general emphasis on speed
  21. (instead of simplicity or elegance).
  22. GNU MP is believed to be faster than any other similar library.  Its advantage
  23. increases with operand sizes for certain operations, since GNU MP in many
  24. cases has asymptotically faster algorithms.
  25. GNU MP is free software and may be freely copied on the terms contained in the
  26. files COPYING.LIB and COPYING (most of GNU MP is under the former, some under
  27. the latter).
  28. OVERVIEW OF GNU MP
  29. There are five classes of functions in GNU MP.
  30.  1. Signed integer arithmetic functions (mpz).  These functions are intended
  31.     to be easy to use, with their regular interface.  The associated type is
  32.     `mpz_t'.
  33.  2. Rational arithmetic functions (mpq).  For now, just a small set of
  34.     functions necessary for basic rational arithmetics.  The associated type
  35.     is `mpq_t'.
  36.  3. Floating-point arithmetic functions (mpf).  If the C type `double'
  37.     doesn't give enough precision for your application, declare your
  38.     variables as `mpf_t' instead, set the precision to any number desired,
  39.     and call the functions in the mpf class for the arithmetic operations.
  40.  4. Positive-integer, hard-to-use, very low overhead functions are in the
  41.     mpn class.  No memory management is performed.  The caller must ensure
  42.     enough space is available for the results.  The set of functions is not
  43.     regular, nor is the calling interface.  These functions accept input
  44.     arguments in the form of pairs consisting of a pointer to the least
  45.     significant word, and an integral size telling how many limbs (= words)
  46.     the pointer points to.
  47.     Almost all calculations, in the entire package, are made by calling these
  48.     low-level functions.
  49.  5. Berkeley MP compatible functions.
  50.     To use these functions, include the file "mp.h".  You can test if you are
  51.     using the GNU version by testing if the symbol __GNU_MP__ is defined.
  52. For more information on how to use GNU MP, please refer to the documentation.
  53. It is composed from the file doc/gmp.texi, and can be displayed on the screen
  54. or printed.  How to do that, as well how to build the library, is described in
  55. the INSTALL file in this directory.
  56. REPORTING BUGS
  57. If you find a bug in the library, please make sure to tell us about it!
  58. You should first check the GNU MP web pages at http://gmplib.org/, under
  59. "Status of the current release".  There will be patches for all known serious
  60. bugs there.
  61. Report bugs to gmp-bugs@gmplib.org.  What information is needed in a useful bug
  62. report is described in the manual.  The same address can be used for suggesting
  63. modifications and enhancements.
  64. ----------------
  65. Local variables:
  66. mode: text
  67. fill-column: 78
  68. End: