summaryrefslogtreecommitdiff
path: root/gmp-impl.h
diff options
context:
space:
mode:
authorMarco Bodrato <bodrato@mail.dm.unipi.it>2012-04-30 15:56:55 +0200
committerMarco Bodrato <bodrato@mail.dm.unipi.it>2012-04-30 15:56:55 +0200
commit06b7f8273f049592f27e5b99cf6c66e09cbaa96a (patch)
treede30b3d10e5fdce5b95f33ad70ec76e8fb0c8152 /gmp-impl.h
parentbc6504b555aceaf03e5964405fea3a96ef880e7c (diff)
downloadgmp-06b7f8273f049592f27e5b99cf6c66e09cbaa96a.tar.gz
Share some tables among combinatoric functions.
Diffstat (limited to 'gmp-impl.h')
-rw-r--r--gmp-impl.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gmp-impl.h b/gmp-impl.h
index 8700eaf2c..5e721e099 100644
--- a/gmp-impl.h
+++ b/gmp-impl.h
@@ -1915,6 +1915,9 @@ __GMP_DECLSPEC void mpn_copyd (mp_ptr, mp_srcptr, mp_size_t);
__GMP_DECLSPEC extern const mp_limb_t __gmp_fib_table[];
#define FIB_TABLE(n) (__gmp_fib_table[(n)+1])
+extern const mp_limb_t __gmp_oddfac_table[];
+extern const mp_limb_t __gmp_odd2fac_table[];
+
#define SIEVESIZE 512 /* FIXME: Allow gmp_init_primesieve to choose */
typedef struct
{