Blame README

Packit 15dc08
Copyright 1991, 1996, 1999, 2000, 2007 Free Software Foundation, Inc.
Packit 15dc08
Packit 15dc08
This file is part of the GNU MP Library.
Packit 15dc08
Packit 15dc08
The GNU MP Library is free software; you can redistribute it and/or modify
Packit 15dc08
it under the terms of either:
Packit 15dc08
Packit 15dc08
  * the GNU Lesser General Public License as published by the Free
Packit 15dc08
    Software Foundation; either version 3 of the License, or (at your
Packit 15dc08
    option) any later version.
Packit 15dc08
Packit 15dc08
or
Packit 15dc08
Packit 15dc08
  * the GNU General Public License as published by the Free Software
Packit 15dc08
    Foundation; either version 2 of the License, or (at your option) any
Packit 15dc08
    later version.
Packit 15dc08
Packit 15dc08
or both in parallel, as here.
Packit 15dc08
Packit 15dc08
The GNU MP Library is distributed in the hope that it will be useful, but
Packit 15dc08
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
Packit 15dc08
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
Packit 15dc08
for more details.
Packit 15dc08
Packit 15dc08
You should have received copies of the GNU General Public License and the
Packit 15dc08
GNU Lesser General Public License along with the GNU MP Library.  If not,
Packit 15dc08
see https://www.gnu.org/licenses/.
Packit 15dc08
Packit 15dc08
Packit 15dc08
Packit 15dc08
Packit 15dc08
Packit 15dc08
Packit 15dc08
			THE GNU MP LIBRARY
Packit 15dc08
Packit 15dc08
Packit 15dc08
GNU MP is a library for arbitrary precision arithmetic, operating on signed
Packit 15dc08
integers, rational numbers, and floating point numbers.  It has a rich set of
Packit 15dc08
functions, and the functions have a regular interface.
Packit 15dc08
Packit 15dc08
GNU MP is designed to be as fast as possible, both for small operands and huge
Packit 15dc08
operands.  The speed is achieved by using fullwords as the basic arithmetic
Packit 15dc08
type, by using fast algorithms, with carefully optimized assembly code for the
Packit 15dc08
most common inner loops for lots of CPUs, and by a general emphasis on speed
Packit 15dc08
(instead of simplicity or elegance).
Packit 15dc08
Packit 15dc08
GNU MP is believed to be faster than any other similar library.  Its advantage
Packit 15dc08
increases with operand sizes for certain operations, since GNU MP in many
Packit 15dc08
cases has asymptotically faster algorithms.
Packit 15dc08
Packit 15dc08
GNU MP is free software and may be freely copied on the terms contained in the
Packit 15dc08
files COPYING* (see the manual for information on which license(s) applies to
Packit 15dc08
which components of GNU MP).
Packit 15dc08
Packit 15dc08
Packit 15dc08
Packit 15dc08
			OVERVIEW OF GNU MP
Packit 15dc08
Packit 15dc08
There are four classes of functions in GNU MP.
Packit 15dc08
Packit 15dc08
 1. Signed integer arithmetic functions (mpz).  These functions are intended
Packit 15dc08
    to be easy to use, with their regular interface.  The associated type is
Packit 15dc08
    `mpz_t'.
Packit 15dc08
Packit 15dc08
 2. Rational arithmetic functions (mpq).  For now, just a small set of
Packit 15dc08
    functions necessary for basic rational arithmetics.  The associated type
Packit 15dc08
    is `mpq_t'.
Packit 15dc08
Packit 15dc08
 3. Floating-point arithmetic functions (mpf).  If the C type `double'
Packit 15dc08
    doesn't give enough precision for your application, declare your
Packit 15dc08
    variables as `mpf_t' instead, set the precision to any number desired,
Packit 15dc08
    and call the functions in the mpf class for the arithmetic operations.
Packit 15dc08
Packit 15dc08
 4. Positive-integer, hard-to-use, very low overhead functions are in the
Packit 15dc08
    mpn class.  No memory management is performed.  The caller must ensure
Packit 15dc08
    enough space is available for the results.  The set of functions is not
Packit 15dc08
    regular, nor is the calling interface.  These functions accept input
Packit 15dc08
    arguments in the form of pairs consisting of a pointer to the least
Packit 15dc08
    significant word, and an integral size telling how many limbs (= words)
Packit 15dc08
    the pointer points to.
Packit 15dc08
Packit 15dc08
    Almost all calculations, in the entire package, are made by calling these
Packit 15dc08
    low-level functions.
Packit 15dc08
Packit 15dc08
For more information on how to use GNU MP, please refer to the documentation.
Packit 15dc08
It is composed from the file doc/gmp.texi, and can be displayed on the screen
Packit 15dc08
or printed.  How to do that, as well how to build the library, is described in
Packit 15dc08
the INSTALL file in this directory.
Packit 15dc08
Packit 15dc08
Packit 15dc08
Packit 15dc08
			REPORTING BUGS
Packit 15dc08
Packit 15dc08
If you find a bug in the library, please make sure to tell us about it!
Packit 15dc08
Packit 15dc08
You should first check the GNU MP web pages at https://gmplib.org/, under
Packit 15dc08
"Status of the current release".  There will be patches for all known serious
Packit 15dc08
bugs there.
Packit 15dc08
Packit 15dc08
Report bugs to gmp-bugs@gmplib.org.  What information is needed in a useful bug
Packit 15dc08
report is described in the manual.  The same address can be used for suggesting
Packit 15dc08
modifications and enhancements.
Packit 15dc08
Packit 15dc08
Packit 15dc08
Packit 15dc08
Packit 15dc08
----------------
Packit 15dc08
Local variables:
Packit 15dc08
mode: text
Packit 15dc08
fill-column: 78
Packit 15dc08
End: