summaryrefslogtreecommitdiff
path: root/mpz
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2001-10-03 23:00:15 +0200
committerKevin Ryde <user42@zip.com.au>2001-10-03 23:00:15 +0200
commite1b1f1ee28f76e3f722ea2247e813398cae97c8f (patch)
tree9423c571824cc91cf647c67e43fdc126f49a4b7c /mpz
parent9dd95a4fde667046964b16b6d9cf786800e09c67 (diff)
downloadgmp-e1b1f1ee28f76e3f722ea2247e813398cae97c8f.tar.gz
* mpz/README: Remove file, now adequately covered in the manual.
Diffstat (limited to 'mpz')
-rw-r--r--mpz/README23
1 files changed, 0 insertions, 23 deletions
diff --git a/mpz/README b/mpz/README
deleted file mode 100644
index 06b481d77..000000000
--- a/mpz/README
+++ /dev/null
@@ -1,23 +0,0 @@
-This directory contains functions for GMP's integer function layer.
-
-In this version of GMP, integers are represented like in the figure below.
-(Please note that the format might change between every version, and that
-depending on the internal format in any way is a bad idea.)
-
- most least
-significant significant
- limb limb
-
- _mp_d
- /
- /
- \/
- ____ ____ ____ ____ ____
- |____|____|____|____|____|
-
- <------- _mp_size ------->
-
-
-The most significant limb will be non-zero. The _mp_size field's sign
-reflects the sign of the number. Its absolute value is the count of limbs
-in the number.