Mercurial > hg > xemacs-beta
comparison src/number.h @ 5739:a2912073be85
Support bignums with MPIR. Add documentation on the bignum, ratio,
and bigfloat implementations. See xemacs-patches message with ID
<CAHCOHQkytZao7Uk9ggeo1HKKJtN1bqO054X2mPsGYyQFjbHrZA@mail.gmail.com>
and following messages.
author | Jerry James <james@xemacs.org> |
---|---|
date | Wed, 19 Jun 2013 09:30:30 -0600 |
parents | 3192994c49ca |
children | ffc0c5a66ab1 |
comparison
equal
deleted
inserted
replaced
5738:f6af091ac654 | 5739:a2912073be85 |
---|---|
54 - (provde 'ratio) if HAVE_RATIO | 54 - (provde 'ratio) if HAVE_RATIO |
55 - (provide 'bigfloat) if HAVE_BIGFLOAT | 55 - (provide 'bigfloat) if HAVE_BIGFLOAT |
56 */ | 56 */ |
57 | 57 |
58 /* Load the library definitions */ | 58 /* Load the library definitions */ |
59 #ifdef WITH_GMP | 59 #if defined(WITH_GMP) || defined(WITH_MPIR) |
60 #include "number-gmp.h" | 60 #include "number-gmp.h" |
61 #endif | 61 #endif |
62 #ifdef WITH_MP | 62 #ifdef WITH_MP |
63 #include "number-mp.h" | 63 #include "number-mp.h" |
64 #endif | 64 #endif |